|
Posted by Mike on 03/29/07 16:04
Hello, I have a resultset as follows:
fields: Name, RankID
values:
Prorduct A, 4
Product B, 33
Product C, 221
(etc)
Name is always unique. RankID may not be.
I want to take that result set and basically pivot it to have the Name
values as columns, and the RankID of each one as the data. So you
would end up with only one row like:
Product A | Product B | Product C | etc
4 | 33 | 221 | etc
Is this possible? I do not want to sum the data or anything, simply
rotate it sort of.
Any advice is appreciated.
[Back to original message]
|