|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Using Multiple Columns in the GROUP BY Clause
By: FYIcenter.com
(Continued from previous topic...)
Can Multiple Columns Be Used in GROUP BY?
If you want to break your output into smaller groups, you can specify multiple
column names or expressions in the GROUP BY clause. Output in each group must satisfy
a specific combination of the expressions listed in the GROUP BY clause. The more
columns or expressions entered in the GROUP BY clause, the smaller the groups will be.
The tutorial exercise below shows you how to break data into groups per "tag" and per
year when they were created. Then the group function COUNT(*) is applied on each group:
SELECT tag, YEAR(created), COUNT(*)
FROM fyi_links GROUP BY tag, YEAR(created)
GO
tag year(created) count(*)
SQA 2003 1
DEV 2004 1
DBA 2005 1
DBA 2006 1
DEV 2006 1
DBA 2007 1
SQA 2007 1
So there is only one row in each group.
(Continued on next topic...)
- 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?
|