|
|
Grouped Set Functions - the GROUP BY Clause
Normally, set functions return a single value, calculated from the set of all values in the column or expression.
If the SELECT statement includes a GROUP BY clause, set functions will be applied to groups of values. Columns used for GROUP BY do not have to be included in the SELECT list.
Find the number of rows in each category within the FORMATS table:
SELECT category_id, COUNT(display_order) FROM formats GROUP BY category_id;Returns:
Restrictions when Using GROUP BY
Using a GROUP BY clause places some restrictions on the SELECT statement:
- Only constants, columns used in the GROUP BY clause, and columns used in set functions may be included in the SELECT list
- A column used in the GROUP BY clause may not be used in a set function.
Column References
In a statement with column references in the SELECT list, all columns not used in set functions must be used as grouping columns.
Null Values
For grouping purposes, NULL values are regarded as equivalent. Thus for the example table:
The following statement:
SELECT sample, COUNT(*) as number ... GROUP BY sample;Returns:
|
Upright Database Technology AB Voice: +46 18 780 92 00 Fax: +46 18 780 92 40 dbtechnology@upright.se |
|
|