- 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 CUBE
CUBE is an extension of the GROUP BY
clause that generates all possible combinations of groupings, including subtotals and a grand total. It is useful for multidimensional analysis in reports.
Syntax of SQL CUBE
SELECT column_name1, column_name2, aggregate_function(column_name)
FROM table_name
GROUP BY CUBE(column_name1, column_name2);
- column_name1, column_name2: The columns used for grouping.
- aggregate_function(): Functions like
SUM()
,COUNT()
,AVG()
,MAX()
, orMIN()
. - CUBE(): Generates all possible combinations of groupings.
Key Features of SQL CUBE
- Computes subtotals at all grouping levels.
- Computes the grand total for all rows.
- Generates more group combinations than
ROLLUP()
. - Useful for multi-dimensional reports.
Example of SQL CUBE
Consider the following table:
Table: Sales
Query: Compute total sales for all category and product combinations
SELECT category, product, SUM(sales_amount) AS total_sales
FROM sales
GROUP BY CUBE(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 | Laptop | 1000 |
NULL | Phone | 700 |
NULL | Chair | 500 |
NULL | Table | 800 |
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. - Subtotal for each product across all categories:
NULL
incategory
means subtotal for that product. - Grand total:
NULL
in bothcategory
andproduct
represents the total sales for all categories and products.
SQL CUBE vs. SQL ROLLUP
Feature | CUBE | ROLLUP |
---|---|---|
Generates subtotals | β | β |
Generates grand total | β | β |
Generates all possible groupings | β | β |
Best for multi-dimensional data | β | β |
Best for hierarchical data | β | β |
SQL CUBE with COUNT()
Example: Count the number of products in each category and overall
SELECT category, product, COUNT(*) AS product_count
FROM sales
GROUP BY CUBE(category, product);
Summary
- CUBE generates all possible combinations of grouping sets.
- The
NULL
values represent subtotal or total rows. - More comprehensive than
ROLLUP()
because it includes all group combinations. - Use cases: Multi-dimensional analysis, financial reports, and business intelligence reports.