博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用动态SQL语句实现简单的行列转置(动态产生列)
阅读量:5765 次
发布时间:2019-06-18

本文共 2075 字,大约阅读时间需要 6 分钟。

原始数据如下图所示:(商品的销售明细)

date=业务日期;Item=商品名称;saleqty=销售数量;

-- 建立测试数据(表)

create table test (Date varchar(10), item char(10),saleqty int)
insert test values('2010-01-01','AAA',8)
insert test values('2010-01-02','AAA',4)
insert test values('2010-01-03','AAA',5)
insert test values('2010-01-01','BBB',1)
insert test values('2010-01-02','CCC',2)
insert test values('2010-01-03','DDD',6)

需要实现的报表样式:每一行既每一天,显示所有商品(列)该天的销售数量;

 

 

实现的方法和思路如下:

-- 实现结果的静态SQL语句写法

-- 整理报表需要的格式
select date,
case item when 'AAA' then saleqty when null then 0 end as AAA,
case item when 'BBB' then saleqty when null then 0 end as BBB,
case item when 'CCC' then saleqty when null then 0 end as CCC,
case item when 'DDD' then saleqty when null then 0 end as DDD
from test

 

 

  

-- 按日期汇总行

select date,
sum(case item when 'AAA' then saleqty when null then 0 end) as AAA,
sum(case item when 'BBB' then saleqty when null then 0 end) as BBB,
sum(case item when 'CCC' then saleqty when null then 0 end) as CCC,
sum(case item when 'DDD' then saleqty when null then 0 end) as DDD
from test 
group by date

 

 

 

 

-- 处理数据:将空值的栏位填入数字0;

select date,
isnull (sum(case item when 'AAA' then saleqty end),0) as AAA,
isnull (sum(case item when 'BBB' then saleqty end),0) as BBB,
isnull (sum(case item when 'CCC' then saleqty end),0) as CCC,
isnull (sum(case item when 'DDD' then saleqty end),0) as DDD
from test 
group by date

 

静态SQL语句编写完成!

-- 需要动态实现的SQL部分

isnull (sum(case item when 'AAA' then saleqty end),0) as AAA,
isnull (sum(case item when 'BBB' then saleqty end),0) as BBB,
isnull (sum(case item when 'CCC' then saleqty end),0) as CCC,
isnull (sum(case item when 'DDD' then saleqty end),0) as DDD

-- 动态语句的实现

select 'isnull (sum(case item when '''+item+''' then saleqty end),0) as ['+item+']' 
from (select distinct item from test) as a
-- 这一步很关键:利用结果集给变量赋值;

-- 完成!

declare @sql varchar(8000)
set @sql = 'select Date'
select @sql = @sql + ',isnull (sum(case item when '''+item+''' then saleqty end),0) as ['+item+']' 
from (select distinct item from test) as a
select @sql = @sql+' from test group by date'
exec(@sql)

-- 删除测试数据(表)

drop table test

转载地址:http://cywux.baihongyu.com/

你可能感兴趣的文章
ChPlayer播放器的使用
查看>>
js 经过修改改良的全浏览器支持的软键盘,随机排列
查看>>
Mysql读写分离
查看>>
Oracle 备份与恢复学习笔记(5_1)
查看>>
Oracle 备份与恢复学习笔记(14)
查看>>
分布式配置中心disconf第一部(基本介绍)
查看>>
Scenario 9-Shared Uplink Set with Active/Active uplink,802.3ad(LACP)-Flex-10
查看>>
UML类图中的六种关系
查看>>
探寻Interpolator源码,自定义插值器
查看>>
一致性哈希
查看>>
mysql(待整理)
查看>>
看雪论坛502,出现安全宝?
查看>>
使用PullToRefresh实现下拉刷新和上拉加载
查看>>
mysql
查看>>
管家婆数据库823错误,并闩锁页错误数据恢复成功
查看>>
2012年电信业八大发展趋势
查看>>
Web日志安全分析工具 v2.0发布
查看>>
JS重载
查看>>
python2和python3同安装在Windows上,切换问题
查看>>
php加速工具xcache的安装与使用(基于LNMP环境)
查看>>