动态列转行

本文提供了一个SQL查询示例,展示了如何使用CASE WHEN语句进行数据聚合,将不同单位下的同一品种的数量汇总在一起,便于进行进一步的数据分析。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

if object_id('tb') >0
 drop table tb
create table [tb]([单位] varchar(1),[品种] varchar(1),[数量] int)
insert [tb]
select 'A','a',1 union all
select 'A','b',2 union all
select 'A','c',3 union all
select 'A','d',4 union all
select 'B','a',11 union all
select 'B','b',12 union all
select 'B','c',13 union all
select 'B','d',14 union all
select 'C','a',21 union all
select 'C','b',22 union all
select 'C','c',23 union all
select 'C','d',24
go

declare @sql varchar(8000)
select
  @sql=isnull(@sql+',','')
  +'sum(case when 品种='''+品种+''' then 数量 else 0 end) as ['+品种+']'
from
(select distinct 品种 from tb) t
exec('select 单位,'+@sql+' from tb group by 单位')

 

结果

单位 a   b   c   d

A 1 2 3 4
B 11 12 13 14
C 21 22 23 24

 

 

摘自优快云。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值