I have a table with the following (very simplified) data:
ID Value1 Value2 Value3
-----------------------------
1 5 7 Test
2 4 7 Test2
I want to get each column name and the value in the row for that column; so, my desired output would look like this:
Column 1 2
----------------------------
Value1 5 4
Value2 7 7
Value3 Test Test2
I've been playing with PIVOT and UNPIVOT but can't quite figure it out. Any help would be appreciated.