I have a table (which is the result of a query) in postgres that has a set of rows (the result of a complicated summation of data) that looks like the following: (The column names are the names of each day, and the value of each column is a double precision.)
Sun Mon Tues Wed Thurs Fri
1.24 1.11 4.51 3.21 2.21 1.01
I need to have the data selected from one row so the results look like the below:
Day Amount
Sun 1.24
Mon 1.11
Tues 4.51
Wed 3.21
Thurs 2.21
Fri 1.01
I'm having difficulty just getting started, as I really need to change the column names to values and pivot the result. I tried experimenting with crosstab but I'm not entirely sure this is what I need. Any advice or suggestions that could get me going in the right direction would be very much appreciated.