- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL ROLLUP
ROLLUP is an extension of the GROUP BY
clause that generates subtotals and a grand total in the result set. It helps in generating hierarchical reports by computing aggregate values at multiple levels.
Syntax of SQL ROLLUP
SELECT column_name1, column_name2, aggregate_function(column_name)
FROM table_name
GROUP BY ROLLUP(column_name1, column_name2);
- column_name1, column_name2: The columns used for grouping.
- aggregate_function(): Functions like
SUM()
,COUNT()
,AVG()
,MAX()
, orMIN()
. - ROLLUP(): Computes subtotals for each level and a grand total.
Key Features of SQL ROLLUP
- Computes subtotals for each level of grouping.
- Computes the grand total for all rows.
- Produces hierarchical results useful for reports.
- The order of columns in
ROLLUP()
affects the output structure.
Example of SQL ROLLUP
Consider the following table:
Table: Sales
Query: Compute total sales for each category and product, including subtotals
SELECT category, product, SUM(sales_amount) AS total_sales
FROM sales
GROUP BY ROLLUP(category, product);
Output:
category | product | total_sales |
---|---|---|
Electronics | Laptop | 1000 |
Electronics | Phone | 700 |
Electronics | NULL | 1700 |
Furniture | Chair | 500 |
Furniture | Table | 800 |
Furniture | NULL | 1300 |
NULL | NULL | 3000 |
Explanation:
- Group by category and product: Computes total sales per product.
- Subtotal for each category:
NULL
inproduct
means a subtotal for that category. - Grand total:
NULL
in bothcategory
andproduct
represents the total sales for all categories.
SQL ROLLUP vs. GROUPING SETS vs. CUBE
Feature | ROLLUP | CUBE | GROUPING SETS |
---|---|---|---|
Generates subtotals | β | β | β |
Generates grand total | β | β | β |
Generates all possible combinations | β | β | β (customizable) |
Best for hierarchical data | β | β | β |
SQL ROLLUP with COUNT()
Example: Count the number of products in each category and overall
SELECT category, product, COUNT(*) AS product_count
FROM sales
GROUP BY ROLLUP(category, product);
Summary
- ROLLUP is used for hierarchical reports with subtotals and grand totals.
- The
NULL
values represent subtotal or total rows. - The order of columns in
ROLLUP()
affects grouping levels. - Use cases: Financial reports, sales summaries, and hierarchical aggregations.