I have a table with the following structure :
TableNo1
Field1
row1
row2
row3
row4
row5
...
...
...
row n
Now I need to create a new table with the following schema:
TableNo2
Field1(row1 of Table1) Field2(row2 of Table1) Field3(row3 of table1) Fieldn(row n of table1)
I read about this but only thing i was able to find is the into clause which doesnt work.
Can anyone please help?