This is a table that i am going to access.
Account | col1 | col2 | col3
.............................
value 1 x1 x2 x3
value 2 x1 x2 x3
What i want to do is i want convert this table into this format as i mentioned below,
Account | Carrier | |
........................
value 1 col1 x1
value 1 col2 x2
value 1 col3 x3
How do i do this by using select sql. i really appreciate if anyone can help me to solve this problem
Thanks,