Redshift. How can we transpose (dynamically) a table from columns to rows?
问题 How can we transpose a Redshift table from columns to rows? For example, if we have a generic (not already known) table like the following: source table: date id alfa beta gamma ... omega 2018-08-03 1 1 2 3 4 2018-08-03 2 4 3 2 1 ... 2018-09-04 1 3 1 2 4 ... How we can achieve the following result? transposed table: date id column_name column_value 2018-08-03 1 alfa 1 2018-08-03 1 beta 2 ... 2018-08-03 2 omega 1 ... 2018-09-04 1 gamma 2 ... Where the target table, the number of columns (alfa,