Is there a unpivot equivalent function in PostgreSQL?

link|improve this question
It would be nice if you explain what's "unipivot". – Milen A. Radev Jul 17 '09 at 11:53
@Milen A. Radev: In PostgreSQL, as @Bill Karwin notes below, the crosstab() function is used for pivot operations. The doc says: "The crosstab function is used to produce "pivot" displays, wherein data is listed across the page rather than down." So by unpivot, I assume @Tony Searle means "data is listed down the page, rather than across." See my answer below. – Stew Jun 15 '11 at 14:57
feedback

3 Answers

I wrote a horrible unpivot function for PostgreSQL. It's rather slow but it at least returns results like you'd expect an unpivot operation to.

https://cgsrv1.arrc.csiro.au/blog/2010/05/14/unpivotuncrosstab-in-postgresql/

Hopefully you can find it useful..

link|improve this answer
feedback

Create an example table:

CREATE TEMP TABLE foo (id int, a text, b text, c text);
INSERT INTO foo VALUES (1, 'ant', 'cat', 'chimp'), (2, 'grape', 'mint', 'basil');

You can 'unpivot' or 'uncrosstab' using UNION ALL:

SELECT id,
       'a' AS colname,
       a AS thing
FROM foo
UNION ALL
SELECT id,
       'b' AS colname, 
       b AS thing
FROM foo
UNION ALL
SELECT id, 
       'c' AS colname,
       c AS thing
FROM foo
ORDER BY id;

This runs 3 different subqueries on foo, one for each column we want to unpivot, and returns, in one table, every record from each of the subqueries.

But that will scan the table N times, where N is the number of columns you want to unpivot. This is inefficient, and a big problem when, for example, you're working with a very large table that takes a long time to scan.

Instead, use:

SELECT id,
       unnest(array['a', 'b', 'c']) AS colname,
       unnest(array[a, b, c]) AS thing
FROM foo
ORDER BY id;

This is easier to write, and it will only scan the table once.

array[a, b, c] returns an array object, with the values of a, b, and c as it's elements. unnest(array[a, b, c]) breaks the results into one row for each of the array's elements.

Hope that helps!

link|improve this answer
feedback

You can use the crosstab() function in PostgreSQL to implement pivot functionality.

See http://www.postgresql.org/docs/current/static/tablefunc.html

It's the reverse operation of a pivot. I'm not sure if it's straightforward to implement unpivot with crosstab() but perhaps this can get you started.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown