KnowledgeBoat Logo

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

2 Likes

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

3 Likes


Related Questions