I have a employee table with employee ID and salary column but i want transpose of that column but without using pivot
keyword.
original table
ID Salary
1 10000
2 20000
3 30000
4 40000
5 50000
after select query output like =>>
ID 1 2 3 4 5
------ ----- ----- ----- ----- -----
Salary 10000 20000 30000 40000 50000