SqlServer快速行列转换

pivot函数特使用,快速实现行列数据转换:

create table test(id int,name varchar(20),quarter int,profile int)

insert into test values(1,'a',1,1000) insert into test values(1,'a',2,2000)

insert into test values(1,'a',3,4000) insert into test values(1,'a',4,5000)

insert into test values(2,'b',1,3000) insert into test values(2,'b',2,3500)

insert into test values(2,'b',3,4200) insert into test values(2,'b',4,5500)

select * from test --创建表test

 

现在需要把quarter 从1列数据变成4列数据 :

 

把一列拆成几列这时候就能使用pivot函数很简单的实现

 

select * from test pivot ( sum([profile]) for [quarter] in ([1],[2],[3],[4]) ) as s;

如果对于特殊的表:比如表内有其他字段是不需要的可以使用子查询处理:
select * from (子查询) tmpTable pivot ( 列1 for 列2in ([Value1],[Value2],[Value3],[Value4]) ) as myTbl;

 

你可能感兴趣的:(SqlServer快速行列转换)