Question Details

Detailed explanation and options for the selected question.

What is the function of the SQL HAVING clause?

A. To filter grouped rows
B. To filter rows before grouping
C. To order grouped rows
D. To join tables

Explanation:

HAVING filters grouped rows. WHERE filters rows before grouping, ORDER BY orders rows, and JOIN links tables.