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.
DuckDB 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 thePIVOT
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⟩
ON ⟨columns⟩
USING ⟨values⟩
GROUP BY ⟨rows⟩
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;
country | name | year | population |
---|---|---|---|
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 |
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);
country | name | 2000 | 2010 | 2020 |
---|---|---|---|---|
NL | Amsterdam | 1005 | 1065 | 1158 |
US | Seattle | 564 | 608 | 738 |
US | New York City | 8015 | 8175 | 8772 |
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 DuckDB!)
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 theUSING
clause. In DuckDB, thePIVOT
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;
country | 2000 | 2010 | 2020 |
---|---|---|---|
NL | 1005 | 1065 | 1158 |
US | 8579 | 8783 | 9510 |
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;
country | 2000 | 2010 |
---|---|---|
NL | 1005 | 1065 |
US | 8579 | 8783 |
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.
DuckDB 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);
year | NL_Amsterdam | NL_New York City | NL_Seattle | US_Amsterdam | US_New York City | US_Seattle |
---|---|---|---|---|---|---|
2000 | 1005 | NULL | NULL | NULL | 8015 | 564 |
2010 | 1065 | NULL | NULL | NULL | 8175 | 608 |
2020 | 1158 | NULL | NULL | NULL | 8772 | 738 |
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);
year | NL_Amsterdam | US_New York City | US_Seattle |
---|---|---|---|
2000 | 1005 | 8015 | 564 |
2010 | 1065 | 8175 | 608 |
2020 | 1158 | 8772 | 738 |
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;
country | 2000_total | 2000_max | 2010_total | 2010_max | 2020_total | 2020_max |
---|---|---|---|---|---|---|
US | 8579 | 8015 | 8783 | 8175 | 9510 | 8772 |
NL | 1005 | 1005 | 1065 | 1065 | 1158 | 1158 |
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;
country | name | 2000 | 2010 | 2020 |
---|---|---|---|---|
NL | Amsterdam | 1005 | 1065 | 1158 |
US | Seattle | 564 | 608 | 738 |
US | New York City | 8015 | 8175 | 8772 |
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 PIVOT
s 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);
country | 2000 | 2010 | 2020 | Amsterdam | New York City | Seattle |
---|---|---|---|---|---|---|
NL | 1005 | 1065 | 1158 | 3228 | NULL | NULL |
US | 8579 | 8783 | 9510 | NULL | 24962 | 1910 |
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 BY ⟨rows⟩
);
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
);
country | 2000 | 2010 | 2020 |
---|---|---|---|
NL | 1005 | 1065 | 1158 |
US | 8579 | 8783 | 9510 |
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')
);
name | 2000_NL_total | 2000_NL_count | 2000_US_total | 2000_US_count | 2010_NL_total | 2010_NL_count | 2010_US_total | 2010_US_count |
---|---|---|---|---|---|---|---|---|
Amsterdam | 1005 | 1 | NULL | 0 | 1065 | 1 | NULL | 0 |
Seattle | NULL | 0 | 564 | 1 | NULL | 0 | 608 | 1 |
New York City | NULL | 0 | 8015 | 1 | NULL | 0 | 8175 | 1 |
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)
);