分享
 
 
 

无规律自定义分段的分类汇总+交叉表处理

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

/*--原帖地址:

http://community.csdn.net/Expert/topic/3845/3845290.xml?temp=.3689386

--*/

--测试数据

create table tb(编号 int,性质 varchar(10),数量 int,指标1 decimal(10,1),指标2 decimal)

insert tb select 1 ,'00' ,10,1.1 ,10

union all select 2 ,'01' ,20,1.2 ,20

union all select 3 ,'00' ,30,1.5 ,10

union all select 4 ,'01' ,40,1.9 ,35

union all select 5 ,'00' ,40,1.2 ,20

/*--处理要求

要求得到下述结果:

a 范围 性质(00) 性质(01)

----------------- ---------------- -------------- --------------

指标1 <1.0 .00 .00

1.0-1.29 .63 .63

1.3-1.59 .38 .38

1.9-1.99 .00 .00

>=2 .00 .00

指标1平均值 1.27 1.55

指标2 <10 .00 .00

10-31 1.00 1.00

31-50 .00 .00

>=50 .00 .00

指标2平均值 13.33 27.50

数量合计: 80.00 60.00

------------------------------------------------------------------

分类说明:

范围 性质(00) 性质(01)

指标1 <1.0 0 0

1.0-1.29 (10+40)/(10+30+40) 20/(20+40)

1.3-1.59 30/(10+30+40) 0

1.6-1.99 0 40/(20+40)

>=2 0 0

指标1平均值: (1.1+1.5+1.2)/3 (1.2+1.9)/2

指标2 <10 0 0

10-30 (10+30+40)/(10+30+40) 20/(20+40)

31-50 0 40/(20+40)

>=50 0 0

指标2平均值: (10+10+20)/3 (20+35)/2

数量合计: 10+30+40 20+40

--*/

go

--查询处理

select a,范围,[性质(00)],[性质(01)]

from(

select

a=case a.id when 1 then '指标1' when 21 then '指标2' else '' end,

范围=a.lb,

[性质(00)]=cast(case when b.a>0 then isnull(a.a*1./b.a,0) else 0 end as decimal(10,2)),

[性质(01)]=cast(case when b.a>0 then isnull(a.a*1./b.a,0) else 0 end as decimal(10,2)),

a.id

from(

select b.id,b.lb,

a=sum(case a.性质 when '00' then a.数量 end),

b=sum(case a.性质 when '01' then a.数量 end)

from tb a

right join(

select id=1,lb='<1.0' ,a=null,b=1.0 union all

select id=2,lb='1.0-1.29',a=1.0 ,b=1.3 union all

select id=3,lb='1.3-1.59',a=1.3 ,b=1.9 union all

select id=4,lb='1.9-1.99',a=1.9 ,b=2.0 union all

select id=5,lb='>=2' ,a=2.0 ,b=null

)b on a.指标1>=isnull(b.a,a.指标1)

and a.指标1<isnull(b.b,a.指标1-1)

group by b.id,b.lb

union all

select b.id,b.lb,

a=sum(case a.性质 when '00' then a.数量 end),

b=sum(case a.性质 when '01' then a.数量 end)

from tb a right join(

select id=21,lb='<10' ,a=null,b=10 union all

select id=22,lb='10-31',a=10 ,b=31 union all

select id=23,lb='31-50',a=31 ,b=51 union all

select id=25,lb='>=50' ,a=50 ,b=null

)b on a.指标2>=isnull(b.a,a.指标2)

and a.指标2<isnull(b.b,a.指标2-1)

group by b.id,b.lb

)a,(

select

a=isnull(sum(case 性质 when '00' then 数量 end),0),

b=isnull(sum(case 性质 when '01' then 数量 end),0)

from tb

)b

union all

select '指标1平均值','',

cast(isnull(

case

when count(case 性质 when '00' then 性质 end)>0

then sum(case 性质 when '00' then 指标1 end)

*1./count(case 性质 when '00' then 性质 end)

else 0

end,0) as decimal(10,2)),

cast(isnull(

case

when count(case 性质 when '01' then 性质 end)>0

then sum(case 性质 when '01' then 指标1 end)

*1./count(case 性质 when '01' then 性质 end)

else 0

end,0) as decimal(10,2)),

id=6

from tb

union all

select '指标2平均值','',

cast(isnull(

case

when count(case 性质 when '00' then 性质 end)>0

then sum(case 性质 when '00' then 指标2 end)

*1./count(case 性质 when '00' then 性质 end)

else 0

end,0) as decimal(10,2)),

cast(isnull(

case

when count(case 性质 when '01' then 性质 end)>0

then sum(case 性质 when '01' then 指标2 end)

*1./count(case 性质 when '01' then 性质 end)

else 0

end,0) as decimal(10,2)),

id=26

from tb

union all

select '数量合计:','',

isnull(sum(case 性质 when '00' then 数量 end),0),

isnull(sum(case 性质 when '01' then 数量 end),0),

id=30

from tb

)a order by id

go

--删除测试

drop table tb

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有