|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Using Group Functions in the ORDER BY Clause
By: FYIcenter.com
(Continued from previous topic...)
Can Group Functions Be Used in the ORDER BY Clause?
If the query output is aggregated as groups, you can sort the groups by using
group functions in the ORDER BY clause. The following statement returns
the maximum "counts" in each group, determined by a unique combination of tag and year.
The group output is sorted by the maximum "counts" in each group in ascending order:
SELECT tag, YEAR(created), MAX(counts)
FROM fyi_links GROUP BY tag, YEAR(created)
ORDER BY MAX(counts)
GO
tag year(created) max(counts)
DEV 2006 120
DBA 2006 390
DEV 2004 439
SQA 2007 728
SQA 2003 828
DBA 2005 960
DBA 2007 972
- What Is a SELECT Query Statement?
- How To Create a Testing Table with Test Data?
- How To Select All Columns of All Rows from a Table with a SELECT statement?
- How To Select Some Specific Columns from a Table in a Query?
- How To Select Some Specific Rows from a Table?
- How To Add More Data to the Testing Table?
- How To Sort the Query Output with ORDER BY Clauses?
- Can the Query Output Be Sorted by Multiple Columns?
- How To Sort Query Output in Descending Order?
- How To Count Rows with the COUNT(*) Function?
- Can SELECT Statements Be Used on Views?
- How To Filter Out Duplications in the Returning Rows?
- What Are Group Functions in Query Statements?
- How To Use Group Functions in the SELECT Clause?
- Can Group Functions Be Mixed with Non-group Selection Fields?
- How To Divide Query Output into Multiple Groups with the GROUP BY Clause?
- How To Apply Filtering Criteria at Group Level with The HAVING Clause?
- How To Count Duplicated Values in a Column?
- Can Multiple Columns Be Used in GROUP BY?
- Can Group Functions Be Used in the ORDER BY Clause?
|