Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 Transact-SQL (2000)
 Row to Column & Column to Row in Query

Author  Topic 

karthickbabu
Posting Yak Master

151 Posts

Posted - 2009-04-04 : 03:31:30


My tables values are below
Col1 Col2 Col3 Col4
A 23.45 3.4 4.5
B 2.45 8.4 9.5
C 45 3.4 8

I need this Output
Col1 A B C
Col2 23.45 2.45 45
Col3 3.4 8.4 3.4
Col4 4.5 9.5 8

Is this possible to write query for this?
   

- Advertisement -