Question Details

Detailed explanation and options for the selected question.

Which SQL clause is used to filter rows after grouping?

A. HAVING
B. WHERE
C. GROUP BY
D. LIMIT

Explanation:

HAVING filters rows after grouping. WHERE filters rows before grouping, GROUP BY groups rows, and LIMIT restricts row count.