I am trying to turn a table 90 degrees: make columns rows. No PIVOT is allowed since PIVOT requires aggregate functions.
Example:
I have a table with the columns:
ID int,
ISO char(2),
Text varchar(255).
So I have this:
ID ISO Text -- --- ---- 1 DE Auto 2 EN Car
I'd like to get the following:
ID EN DE -- --- ---- 1 Car Auto
How do you accomplish that? Thanks.