Skip to main content

PIVOT Statement

The PIVOT statement allows distinct values within a column to be separated into their own columns. The values within those new columns are calculated using an aggregate function on the subset of rows that match each distinct value.

Goose implements both the SQL Standard PIVOT syntax and a simplified PIVOT syntax that automatically detects the columns to create while pivoting. PIVOT_WIDER may also be used in place of the PIVOT keyword.

For details on how the PIVOT statement is implemented, see the Pivot Internals site.

The UNPIVOT statement is the inverse of the PIVOT statement.

Simplified PIVOT Syntax

The full syntax diagram is below, but the simplified PIVOT syntax can be summarized using spreadsheet pivot table naming conventions as:

PIVOT ⟨dataset⟩
ONcolumns
USINGvalues
GROUP BYrows
ORDER BY ⟨columns_with_order_directions⟩
LIMIT ⟨number_of_rows⟩;

The ON, USING, and GROUP BY clauses are each optional, but they may not all be omitted.

Example Data

All examples use the dataset produced by the queries below:

CREATE TABLE cities (
country VARCHAR, name VARCHAR, year INTEGER, population INTEGER
);
INSERT INTO cities VALUES
('NL', 'Amsterdam', 2000, 1005),
('NL', 'Amsterdam', 2010, 1065),
('NL', 'Amsterdam', 2020, 1158),
('US', 'Seattle', 2000, 564),
('US', 'Seattle', 2010, 608),
('US', 'Seattle', 2020, 738),
('US', 'New York City', 2000, 8015),
('US', 'New York City', 2010, 8175),
('US', 'New York City', 2020, 8772);
SELECT *
FROM cities;
countrynameyearpopulation
NLAmsterdam20001005
NLAmsterdam20101065
NLAmsterdam20201158
USSeattle2000564
USSeattle2010608
USSeattle2020738
USNew York City20008015
USNew York City20108175
USNew York City20208772

PIVOT ON and USING

Use the PIVOT statement below to create a separate column for each year and calculate the total population in each. The ON clause specifies which column(s) to split into separate columns. It is equivalent to the columns parameter in a spreadsheet pivot table.

The USING clause determines how to aggregate the values that are split into separate columns. This is equivalent to the values parameter in a spreadsheet pivot table. If the USING clause is not included, it defaults to count(*).

PIVOT cities
ON year
USING sum(population);
countryname200020102020
NLAmsterdam100510651158
USSeattle564608738
USNew York City801581758772

In the above example, the sum aggregate is always operating on a single value. If we only want to change the orientation of how the data is displayed without aggregating, use the first aggregate function. In this example, we are pivoting numeric values, but the first function works very well for pivoting out a text column. (This is something that is difficult to do in a spreadsheet pivot table, but easy in Goose!)

This query produces a result that is identical to the one above:

PIVOT cities
ON year
USING first(population);

Note The SQL syntax permits FILTER clauses with aggregate functions in the USING clause. In Goose, the PIVOT statement currently does not support these and they are silently ignored.

PIVOT ON, USING, and GROUP BY

By default, the PIVOT statement retains all columns not specified in the ON or USING clauses. To include only certain columns and further aggregate, specify columns in the GROUP BY clause. This is equivalent to the rows parameter of a spreadsheet pivot table.

In the below example, the name column is no longer included in the output, and the data is aggregated up to the country level.

PIVOT cities
ON year
USING sum(population)
GROUP BY country;
country200020102020
NL100510651158
US857987839510

IN Filter for ON Clause

To only create a separate column for specific values within a column in the ON clause, use an optional IN expression. Let's say for example that we wanted to forget about the year 2020 for no particular reason...

PIVOT cities
ON year IN (2000, 2010)
USING sum(population)
GROUP BY country;
country20002010
NL10051065
US85798783

Multiple Expressions per Clause

Multiple columns can be specified in the ON and GROUP BY clauses, and multiple aggregate expressions can be included in the USING clause.

Multiple ON Columns and ON Expressions

Multiple columns can be pivoted out into their own columns. Goose will find the distinct values in each ON clause column and create one new column for all combinations of those values (a Cartesian product).

In the below example, all combinations of unique countries and unique cities receive their own column. Some combinations may not be present in the underlying data, so those columns are populated with NULL values.

PIVOT cities
ON country, name
USING sum(population);
yearNL_AmsterdamNL_New York CityNL_SeattleUS_AmsterdamUS_New York CityUS_Seattle
20001005NULLNULLNULL8015564
20101065NULLNULLNULL8175608
20201158NULLNULLNULL8772738

To pivot only the combinations of values that are present in the underlying data, use an expression in the ON clause. Multiple expressions and/or columns may be provided.

Here, country and name are concatenated together and the resulting concatenations each receive their own column. Any arbitrary non-aggregating expression may be used. In this case, concatenating with an underscore is used to imitate the naming convention the PIVOT clause uses when multiple ON columns are provided (like in the prior example).

PIVOT cities
ON country || '_' || name
USING sum(population);
yearNL_AmsterdamUS_New York CityUS_Seattle
200010058015564
201010658175608
202011588772738

Multiple USING Expressions

An alias may also be included for each expression in the USING clause. It will be appended to the generated column names after an underscore (_). This makes the column naming convention much cleaner when multiple expressions are included in the USING clause.

In this example, both the sum and max of the population column are calculated for each year and are split into separate columns.

PIVOT cities
ON year
USING sum(population) AS total, max(population) AS max
GROUP BY country;
country2000_total2000_max2010_total2010_max2020_total2020_max
US857980158783817595108772
NL100510051065106511581158

Multiple GROUP BY Columns

Multiple GROUP BY columns may also be provided. Note that column names must be used rather than column positions (1, 2, etc.), and that expressions are not supported in the GROUP BY clause.

PIVOT cities
ON year
USING sum(population)
GROUP BY country, name;
countryname200020102020
NLAmsterdam100510651158
USSeattle564608738
USNew York City801581758772

Using PIVOT within a SELECT Statement

The PIVOT statement may be included within a SELECT statement as a CTE (a Common Table Expression, or WITH clause), or a subquery. This allows for a PIVOT to be used alongside other SQL logic, as well as for multiple PIVOTs to be used in one query.

No SELECT is needed within the CTE, the PIVOT keyword can be thought of as taking its place.

WITH pivot_alias AS (
PIVOT cities
ON year
USING sum(population)
GROUP BY country
)
SELECT * FROM pivot_alias;

A PIVOT may be used in a subquery and must be wrapped in parentheses. Note that this behavior is different than the SQL Standard Pivot, as illustrated in subsequent examples.

SELECT *
FROM (
PIVOT cities
ON year
USING sum(population)
GROUP BY country
) pivot_alias;

Multiple PIVOT Statements

Each PIVOT can be treated as if it were a SELECT node, so they can be joined together or manipulated in other ways.

For example, if two PIVOT statements share the same GROUP BY expression, they can be joined together using the columns in the GROUP BY clause into a wider pivot.

SELECT *
FROM (PIVOT cities ON year USING sum(population) GROUP BY country) year_pivot
JOIN (PIVOT cities ON name USING sum(population) GROUP BY country) name_pivot
USING (country);
country200020102020AmsterdamNew York CitySeattle
NL1005106511583228NULLNULL
US857987839510NULL249621910

Simplified PIVOT Full Syntax Diagram

Below is the full syntax diagram of the PIVOT statement.

SQL Standard PIVOT Syntax

The full syntax diagram is below, but the SQL Standard PIVOT syntax can be summarized as:

SELECT *
FROM ⟨dataset⟩
PIVOT (
values
FOR
⟨column_1⟩ IN (⟨in_list⟩)
⟨column_2⟩ IN (⟨in_list⟩)
...
GROUP BYrows
);

Unlike the simplified syntax, the IN clause must be specified for each column to be pivoted. If you are interested in dynamic pivoting, the simplified syntax is recommended.

Note that no commas separate the expressions in the FOR clause, but that value and GROUP BY expressions must be comma-separated!

Examples

This example uses a single value expression, a single column expression, and a single row expression:

SELECT *
FROM cities
PIVOT (
sum(population)
FOR
year IN (2000, 2010, 2020)
GROUP BY country
);
country200020102020
NL100510651158
US857987839510

This example is somewhat contrived, but serves as an example of using multiple value expressions and multiple columns in the FOR clause.

SELECT *
FROM cities
PIVOT (
sum(population) AS total,
count(population) AS count
FOR
year IN (2000, 2010)
country IN ('NL', 'US')
);
name2000_NL_total2000_NL_count2000_US_total2000_US_count2010_NL_total2010_NL_count2010_US_total2010_US_count
Amsterdam10051NULL010651NULL0
SeattleNULL05641NULL06081
New York CityNULL080151NULL081751

SQL Standard PIVOT Full Syntax Diagram

Below is the full syntax diagram of the SQL Standard version of the PIVOT statement.

Limitations

PIVOT currently only accepts an aggregate function, expressions are not allowed. For example, the following query attempts to get the population as the number of people instead of thousands of people (i.e., instead of 564, get 564000):

PIVOT cities
ON year
USING sum(population) * 1000;

However, it fails with the following error:

Catalog Error:
* is not an aggregate function

To work around this limitation, perform the PIVOT with the aggregation only, then use the COLUMNS expression:

SELECT country, name, 1000 * COLUMNS(* EXCLUDE (country, name))
FROM (
PIVOT cities
ON year
USING sum(population)
);