群里提问(二) 关于多层级数据汇总

 

解决方案:

create table t_20120512_a (
id varchar2(6) primary key,
cost number(3),
p2 number(3),
p3 number(3)
)
/
create table t_20120512_b
(
id varchar2(6) primary key,
name varchar2(50),
b varchar2(100)
)
/
insert into t_20120512_a values ('100',1,1,1);
insert into t_20120512_a values ('101001',2,2,2);
insert into t_20120512_a values ('101002',3,3,3);
commit;
insert into t_20120512_b values ('100','语文',null);
insert into t_20120512_b values ('101','物理',null);
insert into t_20120512_b values ('101001','电学',null);
insert into t_20120512_b values ('101002','力学',null);
commit;

select a.id, b.name ,a.total from
(
select distinct case when GROUPING(substr(id,1,3))=0 then substr(id,1,3) else id end id,sum(cost) total from t_20120512_a group by grouping SETS (id,substr(id,1,3))
) a,
t_20120512_b b 
where a.id=b.id;

 

posted on 2012-05-12 22:51  蓝红石 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/liuweihua/archive/2012/05/12/2497643.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值