Yogesh Chauhan's Blog

Full and Partial CUBE in Postgres with Examples

in Postgres on April 30, 2020

Reading this following post is important in order to understand how CUBE works.

We saw detailed discussion in this blog post about GROUPING SETS in Postgres and how they improve the GROUP BY clause.

How To Use GROUPING SETS To Boost GROUP BY Queries In Postgres?

A shorthand notation is provided for specifying two common types of grouping set. A clause of the form CUBE and a clause of the form ROLLUP.

Postgres CUBE

The CUBE allows you to generate multiple grouping sets.

Syntax


SELECT
    column_1,
    column_2,
    column_3,
    aggregate (column_4)
FROM
    table
GROUP BY
    CUBE (column_1, column_2, column_3);

The last CUBE part is equivalent to


GROUPING SETS (
    ( column_1, column_2, column_3),
    ( column_1, column_2    ),
    ( column_1, column_3 ),
    ( column_1),
    ( column_2, column_3 ),
    ( column_2    ),
    ( column_3 ),
    (         )
)

Let's say the number of columns specified in the CUBE is n then it will make 2n combinations.

Also, you can partially perform the CUBE operation as well.

Just like this


SELECT
    column_1,
    column_2,
    column_3,
    aggregate (column_4)
FROM
    table
GROUP BY
    CUBE (column_1, column_2);

Example

I will be using this database for all examples which is available on my Github public repo


SELECT
    ship_city,
    ship_country,
    SUM (freight)
FROM
    orders
GROUP BY
    CUBE (ship_city, ship_country);

//Output

ship_city,   ship_country,       SUM
null         null                64942.74
"Seattle"    "USA"               1353.0599
"Kirkland"   "USA"               70.009995
...
...
162 rows

Partial CUBE Example


SELECT
    ship_city,
    ship_country,
    SUM (freight)
FROM
    orders
GROUP BY
    ship_city,
    CUBE (ship_country);

//Output

ship_city,    ship_country,     SUM
"Seattle"     "USA"             1353.0599
"Kirkland"    "USA"             70.009995
"Paris"	      "France"	        108.28
...
...
140 rows

Credit: PostgreSQL Docs


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
WHERE Clause in PostgresPostgresOpen Source Security Tools for Defense SecurityMiscellaneousWhat is the correct way to enqueue multiple CSS files in WordPress?WordPressthe box-sizing property in CSSCSSShort-Circuit Evaluation in JavaScriptJavaScriptHow to convert an HTML radio buttons into a toggle switch using CSS?CSS