How can I convert table of the following 5 columns structure:
Id, name, col1, col2, col2
1 aaa 10 20 30
2 bbb 100 200 300
to the following structure where Col1, Col2 and Col3 columns are now shown as strings in new columns Colx.
Id, name, Colx, Value
1 aaa Col1 10
1 aaa Col2 20
1 aaa Col3 30
2 bbb Col1 100
2 bbb Col2 200
2 bbb Col3 300
Thanks! Avi