Is there a unpivot equivalent function in PostgreSQL?
feedback
|
|
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.. | |||
|
feedback
|
|
Create an example table:
You can 'unpivot' or 'uncrosstab' using UNION ALL:
This runs 3 different subqueries on 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:
This is easier to write, and it will only scan the table once.
Hope that helps! | |||
|
feedback
|
|
You can use the 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 | |||
|
feedback
|