E Computer Notes - Enhancements To The GROUP by Clause
E Computer Notes - Enhancements To The GROUP by Clause
E Computer Notes - Enhancements To The GROUP by Clause
http://ecomputernotes.com
Objectives
After completing this lesson, you should be able to do the following: Use the ROLLUP operation to produce subtotal values Use the CUBE operation to produce crosstabulation values Use the GROUPING function to identify the row values created by ROLLUP or CUBE Use GROUPING SETS to produce a single result set
[WHERE
[GROUP BY
[ORDER BY
Example:
SELECT AVG(salary), STDDEV(salary), COUNT(commission_pct),MAX(hire_date) FROM employees WHERE job_id LIKE 'SA%';
[WHERE
[GROUP BY
[ORDER BY
Example:
SELECT department_id, job_id, SUM(salary), COUNT(employee_id) FROM employees GROUP BY department_id, job_id ;
[WHERE
[GROUP BY [HAVING
[ORDER BY
Use the HAVING clause to specify which groups are to be displayed. You further restrict the groups on the basis of a limiting condition.
Use ROLLUP or CUBE with GROUP BY to produce superaggregate rows by cross-referencing columns. ROLLUP grouping produces a results set containing the regular grouped rows and the subtotal values. CUBE grouping produces a results set containing the rows from ROLLUP and cross-tabulation rows.
ROLLUP Operator
SELECT
FROM
[WHERE
[GROUP BY [HAVING
[ORDER BY
http://ecomputernotes.com
CUBE Operator
SELECT
FROM
[WHERE
[GROUP BY [HAVING
[ORDER BY
You can use the CUBE operator to produce crosstabulation values with a single SELECT statement.
http://ecomputernotes.com
1 2
3 4
http://ecomputernotes.com
GROUPING Function
SELECT [column,] group_function(column) . , GROUPING(expr) FROM table [WHERE condition] [GROUP BY [ROLLUP][CUBE] group_by_expression] [HAVING having_expression] [ORDER BY column];
The GROUPING function can be used with either the CUBE or ROLLUP operator. groups forming the subtotal in a row. Using the GROUPING function, you can differentiate stored NULL values from NULL values created by ROLLUP or CUBE. The GROUPING function returns 0 or 1.
http://ecomputernotes.com
2 3
http://ecomputernotes.com
GROUPING SETS
GROUPING SETS are a further extension of the GROUP BY clause. You can use GROUPING SETS to define multiple groupings in the same query. The Oracle Server computes all groupings specified in the GROUPING SETS clause and combines the results of individual groupings with a UNION ALL operation. Grouping set efficiency:
Only one pass over the base table is required. There is no need to write complex UNION statements. The more elements the GROUPING SETS have, the greater the performance benefit.
http://ecomputernotes.com
http://ecomputernotes.com
http://ecomputernotes.com
Composite Columns
A composite column is a collection of columns that are treated as a unit.
ROLLUP (a,
To specify composite columns, use the GROUP BY clause to group columns within parentheses so that the Oracle server treats them as a unit while computing ROLLUP or CUBE operations. When used with ROLLUP or CUBE, composite columns would mean skipping aggregation across certain levels.
(b,c)
, d)
http://ecomputernotes.com
http://ecomputernotes.com
SELECT department_id, job_id, manager_id, SUM(salary) FROM employees GROUP BY ROLLUP( department_id,(job_id, manager_id));
http://ecomputernotes.com
http://ecomputernotes.com
Concatenated Groupings
Concatenated groupings offer a concise way to generate useful combinations of groupings. separate multiple grouping sets, ROLLUP, and CUBE operations with commas so that the Oracle Server combines them into a single GROUP BY clause. The result is a cross-product of groupings from each grouping set.
http://ecomputernotes.com
1
2 3 4
http://ecomputernotes.com