>
GROUP BY Clause
Description
Combines records with identical values in the specified field list into a single record. A summary value is created for each record if you include an SQL aggregate function, such as Sum or Count, in the SELECT statement.
Syntax
SELECT fieldlist
FROM table
WHERE criteria
GROUP BY groupfieldlist
A SELECT statement containing a GROUP BY clause has these parts.
Part | Description |
|
fieldlist | The name of the field or fields to be retrieved along with any field-name aliases, SQL aggregate functions, selection predicates (ALL, DISTINCT, DISTINCTROW, or TOP), or other SELECT statement options. |
table | The name of the table from which records are retrieved. For more information, see the FROM clause. |
Part | Description |
|
criteria | Selection criteria. If the statement includes a WHERE clause, the Microsoft Jet database engine groups values after applying the WHERE conditions to the records. |
groupfieldlist | The names of up to 10 fields used to group records. The order of the field names in groupfieldlist determines the grouping levels from the highest to the lowest level of grouping. |
Remarks
GROUP BY is optional.
Summary values are omitted if there is no SQL aggregate function in the SELECT statement.
Null values in GROUP BY fields are grouped and aren't omitted. However, Null values aren't evaluated in any SQL aggregate function.
Use the WHERE clause to exclude rows you don't want grouped, and use the HAVING clause to filter records after they've been grouped.
Unless it contains Memo or OLE Object data, a field in the GROUP BY field list can refer to any field in any table listed in the FROM clause, even if the field isn't included in the SELECT statement, provided the SELECT statement includes at least one SQL aggregate function. The Jet database engine can't group on Memo or OLE Object fields.
All fields in the SELECT field list must either be included in the GROUP BY clause or be included as arguments to an SQL aggregate function.
See Also
HAVING Clause, ORDER BY Clause, SELECT Statement, SELECT...INTO Statement, SQL Aggregate Functions.
Specifics (Microsoft Access)
Including a GROUP BY clause in an SQL statement is equivalent to creating a totals query in the Query window and setting the Total cell to Group By for the appropriate field.
Example
Some of the following examples assume the existence of a hypothetical Department field in an Employees table.
This example creates a list of unique department names and the number of employees in each of those departments.
SELECT Department, Count([Department]) AS Tally FROM Employees
GROUP BY Department;
For each unique job title, this example calculates the number of Sales department employees who have that title.
SELECT Title, Count(Title) AS Tally FROM Employees
WHERE Department = 'Sales' GROUP BY Title;
This example calculates the number of items in stock for each combination of item number and color.
SELECT Item, Sum(Units) AS Tally FROM ItemsInStock GROUP BY Item, Color;