Collections:
HAVING - Apply Filtering Criteria at Group Level in SQL Server
How To Apply Filtering Criteria at Group Level with The HAVING Clause in SQL Server?
✍: FYIcenter.com
Let's say you have divided the query output into multiple groups with the GROUP BY clause. Now you are only interested in some of the groups, not all the groups. If you want to filter out some groups from the query, you can apply filtering criteria at the group level by using the HAVING clause inside the GROUP BY clause with this syntax:
SELECT group_level_fields FROM source_tables
WHERE search_condition
GROUP BY group_by_expression
HAVING group_filtering_condition
Since group_filtering_condition applies to groups, only group level expressions can be used in group_filtering_condition. The following tutorial exercise gives you some good examples of HAVING clause:
SELECT tag, COUNT(*), MIN(created), AVG(counts)
FROM fyi_links
GROUP BY tag HAVING AVG(counts) > 300
GO
tag COUNT(*) MIN(created) AVG(counts)
DBA 3 2005-01-01 774
SQA 2 2003-01-01 778
SELECT tag, COUNT(*), MIN(created), AVG(counts)
FROM fyi_links
GROUP BY tag
HAVING AVG(counts) > 300 AND tag = 'DBA'
GO
tag COUNT(*) MIN(created) AVG(counts)
DBA 3 2005-01-01 774
Note that the more criteria you have in the HAVING clause, the less groups you will get.
⇒ How To Count Duplicated Values in a Column? in SQL Server
⇐ "GROUP BY" - Dividing Query Output into Multiple Groups in SQL Server
⇑ Using SELECT Statements and GROUP BY Clauses in SQL Server
2016-10-25, 2670🔥, 0💬
Popular Posts:
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
Where to find SQL Server database server tutorials? Here is a collection of tutorials, tips and FAQs...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...
How To Use DATEADD() Function in SQL Server Transact-SQL? DATEADD() is a very useful function for ma...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...