There is a table T with two columns C1 and C2. The data is as below:
C1 C2
1 4
2 5
3 6
display the result as :
1 2 3
4 5 6
I could not figure this out. I was thinking GROUP BY, but this isn't correct
SELECT * FROM table T GROUP BY c1 = 1, c1 =2 , c1 = 3