Skip to content

Instantly share code, notes, and snippets.

@quangnd
Created July 25, 2016 09:26
Show Gist options
  • Save quangnd/5a47ef230cbbb3f04ef1bed024cca2fb to your computer and use it in GitHub Desktop.
Save quangnd/5a47ef230cbbb3f04ef1bed024cca2fb to your computer and use it in GitHub Desktop.
Dynamic Pivot SQL Server(simple)
create table temp
(
date datetime,
category varchar(3),
amount money
)
insert into temp values ('1/1/2012', 'ABC', 1000.00)
insert into temp values ('2/1/2012', 'DEF', 500.00)
insert into temp values ('2/1/2012', 'GHI', 800.00)
insert into temp values ('2/10/2012', 'DEF', 700.00)
insert into temp values ('3/1/2012', 'ABC', 1100.00)
DECLARE @cols AS NVARCHAR(MAX),
@query AS NVARCHAR(MAX);
SET @cols = STUFF((SELECT distinct ',' + QUOTENAME(c.category)
FROM temp c
FOR XML PATH(''), TYPE
).value('.', 'NVARCHAR(MAX)')
,1,1,'')
set @query = 'SELECT date, ' + @cols + ' from
(
select date
, amount
, category
from temp
) x
pivot
(
max(amount)
for category in (' + @cols + ')
) p '
execute(@query)
drop table temp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment