0
0
PostgreSQLquery~10 mins

ROLLUP and CUBE for hierarchical totals in PostgreSQL - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - ROLLUP and CUBE for hierarchical totals
Start with base data
Apply GROUP BY with ROLLUP or CUBE
Generate grouping sets
Calculate aggregates for each grouping set
Return result with hierarchical totals
ROLLUP and CUBE create multiple levels of grouped totals from base data, showing subtotals and grand totals automatically.
Execution Sample
PostgreSQL
SELECT region, product, SUM(sales) AS total_sales
FROM sales_data
GROUP BY ROLLUP(region, product);
This query calculates sales totals by region and product, including subtotals per region and a grand total.
Execution Table
StepregionproductSUM(sales)Grouping LevelAction
1EastApple100region+productCalculate sum for East & Apple
2EastBanana150region+productCalculate sum for East & Banana
3East-250region subtotalSum of East region products
4WestApple200region+productCalculate sum for West & Apple
5WestBanana100region+productCalculate sum for West & Banana
6West-300region subtotalSum of West region products
7--550grand totalSum of all sales
8ExitNo more grouping setsROLLUP completed
💡 All grouping sets processed: detailed, subtotals, and grand total
Variable Tracker
VariableStartAfter 1After 2After 3After 4After 5After 6After 7Final
regionnullEastEastEastWestWestWestnullnull
productnullAppleBanananullAppleBanananullnullnull
SUM(sales)0100150250200100300550550
Key Moments - 3 Insights
Why do some rows have NULL in the product column?
Rows with NULL in product represent subtotals for the region (see rows 3 and 6 in execution_table), showing totals for all products in that region.
What does the row with NULL in both region and product mean?
This row (row 7) is the grand total, summing all sales across all regions and products.
How does ROLLUP differ from a simple GROUP BY?
ROLLUP adds extra grouping sets for subtotals and grand totals automatically, unlike simple GROUP BY which only groups by specified columns (see execution_table for grouping levels).
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the SUM(sales) for the West region subtotal?
A200
B300
C100
D550
💡 Hint
Check row 6 in the execution_table where region is West and product is NULL.
At which step does the grand total appear in the execution_table?
AStep 1
BStep 3
CStep 7
DStep 5
💡 Hint
Look for the row where both region and product are NULL representing the grand total.
If we replaced ROLLUP with CUBE, how would the number of grouping sets change?
AIt would increase
BIt would decrease
CIt would stay the same
DIt would be zero
💡 Hint
CUBE generates all combinations of grouping columns, more than ROLLUP which is hierarchical.
Concept Snapshot
ROLLUP and CUBE add hierarchical totals to GROUP BY queries.
ROLLUP creates subtotals from left to right columns.
CUBE creates all combinations of grouping columns.
NULL in result means subtotal or total level.
Use to get detailed + summary data in one query.
Full Transcript
ROLLUP and CUBE are SQL features that help calculate totals at multiple levels automatically. When you GROUP BY columns with ROLLUP, it adds extra rows for subtotals and a grand total. For example, grouping sales by region and product with ROLLUP shows sales per product, per region subtotal, and overall total. The execution table shows each step: first sums per region and product, then subtotals per region (with NULL product), and finally the grand total (NULL region and product). NULL values in grouping columns indicate these subtotal or total rows. CUBE is similar but creates all possible combinations of grouping columns, resulting in more grouping sets. This helps get detailed and summary data in one query without writing multiple queries.