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.
| Author |
Topic |
|
bhasi83
Starting Member
1 Post |
Posted - 2007-08-14 : 02:19:01
|
| i have data in a table..i want the values in the rows to place in columns and columns into rows..for ex:-there is one tablename id depta 1 xb 2 yc 3 zi want the resultant table should look like thisa b c1 2 3x y z |
|
|
ashley.sql
Constraint Violating Yak Guru
299 Posts |
Posted - 2007-08-14 : 08:35:10
|
| are you using sql server 2000 or 2005Ashley Rhodes |
 |
|
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2007-08-14 : 21:48:49
|
| Take look at cross-tab report in sql2k, or pivot operator in sql2k5. |
 |
|
|
|
|
|