I have a table name called table1 with one column called ID
like this
ID
1
2
3
4
5
6
7
8
9
10
now i want the out put like this
out put
1 2 3 4 5 6 7 8 9 10
that means 1 coumn with different values becomes 1 row
the coumns names can be any thing like id1 id2 id3 ,.....
i.e
id1 id2 id3 id4........ID10
1 2 3 4 ........10
is it possible to get like this ? if so how ?