SELECT column_name, aggregate_function(column_name) 
FROM table_name 
WHERE column_name operator value 
GROUP BY column_name 
HAVING aggregate_function(column_name) operator value

What is the difference between having and where

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

where is conditions on the select ... from

having is conditions on the aggregate results from the group by ...

So, looking at your example again:

SELECT column_name, aggregate_function(column_name)
FROM table_name
WHERE column_name operator value
GROUP BY column_name
HAVING aggregate_function(column_name) operator value

Here, WHERE column_name operator value says "Return results for table_name where 'column_name operator value' is true".

Only after all the results from these conditions are found, it groups by column_name.

Then HAVING aggregate_function(column_name) operator value says "For the resulting aggregate groups, run 'aggregate_function(column_name)' and return only results where 'aggregate_function(column_name) operator value' is true."

link|improve this answer
+1 spot on, but s/is conditions on/filters/g for precision. I.e., "where filters rows; having filters groups." #pedantic – Ray Toal Sep 12 '11 at 6:11
feedback

The WHERE clause specifies with rows are selected by your base query.

The HAVING clause works on the result set after the GROUP BY clause, and specifies which of those rows are included.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.