Skip to content
Advertisement

TSQL PIVOT/UNPIVOT Multiple Summarized Columns

Seems this is a popular topic but I can’t seem to replicate other answers.

I have data that is already summarized by month/year for multiple categories.

What I’m trying to get is this

Here’s the query to provide the data

I’ve used PIVOT a bunch of times, but with a single “category” of data. I can’t seem to get anything to stick using multiple categories

Advertisement

Answer

I would use cross apply to unpivot, and then conditional aggregation to pivot:

Demo on DB Fiddle:

category     | month_1 | month_2 | month_3 | month_4 | month_5 | month_6
:----------- | ------: | ------: | ------: | ------: | ------: | ------:
avgsaleprice |     500 |     300 |     600 |     800 |     300 |     250
calls        |      25 |      17 |      15 |      22 |      18 |      12
deals        |       6 |       2 |       3 |       1 |       7 |       9
productssold |       7 |       4 |       5 |       1 |      12 |      15
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement