The HAVING clause does which of the following?
The HAVING clause does which of the following?
Explanation
- The HAVING clause is used in SQL to filter groups of rows based on a condition, similar to how the WHERE clause filters individual rows.
- The HAVING clause is applied after the GROUP BY clause, which groups the rows into sets, whereas the WHERE clause is applied before the GROUP BY clause.