Computer Science

What is the meaning of "HAVING" clause in SELECT query ?

  1. To filter out the summary groups
  2. To filter out the column groups
  3. To filter out the row and column values
  4. None of the mentioned

SQL Joins & Grouping

3 Likes

Answer

To filter out the summary groups

Reason — The HAVING clause is used to filter out summary groups in a SELECT query that involves aggregate functions and the GROUP BY clause.

Answered By

2 Likes


Related Questions