Computer Science

What is the meaning of "WHERE" clause in a GROUP BY query ?

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

SQL Joins & Grouping

1 Like

Answer

To filter out the row and column values before creating groups

Reason — The WHERE clause is used to filter rows and columns values before any grouping occurs in a query with a GROUP BY clause.

Answered By

1 Like


Related Questions