My table has the following columns:
A | B | C | D | E | F
I want to displays this as follow:
MyColumn | MyCol
In Sql Server 2005 Unpivot operator can solve your problem. Unpivot converts columns to rows in sql server 2005.
Hope it helps