vote up 0 vote down star

I'm working on a dynamic pivot query on a table that contains:

  • OID - OrderID
  • Size - size of the product
  • BucketNum - the order that the sizes should go
  • quantity - how many ordered

The size column contains different sizes depending upon the OID.

So, using the code found here, I put this together:

DECLARE @listCol VARCHAR(2000)
DECLARE @query VARCHAR(4000)

SELECT  @listCol = STUFF(( SELECT distinct  '], [' + [size]
                           FROM     #t
                         FOR
                           XML PATH('')
                         ), 1, 2, '') + ']'


SET @query = 'SELECT * FROM
      (SELECT OID,  [size], [quantity]
            FROM #t 
            ) src
PIVOT (SUM(quantity) FOR Size
IN (' + @listCol + ')) AS pvt'


EXECUTE ( @query )

This works great except that the column headers (the sizes labels) are not in the order based upon the bucketnum column. The are in the order based upon the sizes.

I've tried the optional Order By after the pivot, but that is not working.

How do I control the order in which the columns appear?

Thank you

flag

30% accept rate

2 Answers

vote up 0 vote down

I saw this link just today, which uses a CTE to build the column list (which, presumably, you could order) on the fly without the need for dynamic sql:

http://blog.stevienova.com/2009/07/13/using-ctes-to-create-dynamic-pivot-tables-in-sql-20052008/

link|flag
Thanks, Joel. I hadn't seen it, but I'll check it out! – Gern Blandston Jul 13 at 21:54
That solution is non-dynamic only in names of columns, not in number of columns, which still would need a dynamic technique at the time of the pivot operation. I have used that technique for pivoting variable date ranges however where it's always 12 months, but starts at different months - it's a basic sliding transform. – Cade Roux Jul 13 at 22:02
vote up 0 vote down

You need to fix this:

SELECT  @listCol = STUFF(( SELECT distinct  '], [' + [size]
                           FROM     #t
                         FOR
                           XML PATH('')
                         ), 1, 2, '') + ']'

To return the columns in the right order. You might have to do something like this instead of using DISTINCT:

SELECT [size]
FROM     #t
GROUP BY [size]
ORDER BY MIN(BucketNum)
link|flag
Ahhhhh! The 'MIN(BucketNum)' bit was what I needed!! Thank you, thank you! – Gern Blandston Jul 13 at 21:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.