group by rollup 和grouping的使用实例

GROUPING函数可以接受一列,返回0或者1。如果列值为空,那么GROUPING()返回1;如果列值非空,那么返回0。GROUPING只能在使用ROLLUP或CUBE的查询中使用。当需要在返回空值的地方显示某个值时,GROUPING()就非常有用。

用下面的sql执行一下,就可以知道group by rollup和grouping的用法

with a as (select 'dev1' col1,'file1' col2,'aa' col3,'bb' col4,1 col5 from dual 

  union all select 'dev1' col1,'file2' col2,'cc' col3,'dd' col4,3 col5 from dual
  union all select 'dev2' col1,'file3' col2,'ee' col3,'ff' col4,7 col5 from dual 
  union all select 'dev2' col1,'file4' col2,'gg' col3,'hh' col4,4 col5 from dual
  )
select case  when grouping(col1)=1 and grouping(col2)=1 then '总计' when grouping(col2)=1 then '合计' else col1 end as col_1,
       case grouping(col2) when 1 then '- -' else col2 end as col_2,
       case grouping(col3) when 1 then '- -' else col3 end as col_3,
       case grouping(col4) when 1 then '- -' else col4 end as col_4,
       sum(col5)
from a
group by rollup(col1,(col2,col3,col4));
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值