Possible duplicate:
How to select columns as rows?
I have a table with identifiers like
Table ------- 1 2 3 4 5 and so on
I have this request,
SELECT A, B, Here I need to SELECT ID as a column , FROM MyTable
So the result of this will be
AB 1 2 3 4 5 6 7 and so on -----------------------------------
source share