oracle分类函数总结,Oracle分组函数之ROLLUP的基本用法

rollup函数

本博客简单介绍一下oracle分组函数之rollup的用法,rollup函数常用于分组统计,也是属于oracle分析函数的一种

环境准备

create table dept as select * from scott.dept;

create table emp as select * from scott.emp;

业务场景:求各部门的工资总和及其所有部门的工资总和

这里可以用union来做,先按部门统计工资之和,然后在统计全部部门的工资之和

select a.dname, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno

group by a.dname

union all

select null, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno;

上面是用union来做,然后用rollup来做,语法更简单,而且性能更好

select a.dname, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno

group by rollup(a.dname);

c4cd94698cb71fb1cd288ad1152c9cb5.png

业务场景:基于上面的统计,再加需求,现在要看看每个部门岗位对应的工资之和

select a.dname, b.job, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno

group by a.dname, b.job

union all//各部门的工资之和

select a.dname, null, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno

group by a.dname

union all//所有部门工资之和

select null, null, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno;

用rollup实现,语法更简单

select a.dname, b.job, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno

group by rollup(a.dname, b.job);

effce3877a1c4fcef7c9c447edb8e448.png

假如再加个时间统计的,可以用下面sql:

select to_char(b.hiredate, 'yyyy') hiredate, a.dname, b.job, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno

group by rollup(to_char(b.hiredate, 'yyyy'), a.dname, b.job);

cube函数

select a.dname, b.job, sum(b.sal)

from scott.dept a, scott.emp b

where a.deptno = b.deptno

group by cube(a.dname, b.job);

b44a6e409d48f4805512178a7b60b0fd.pngcube

函数是维度更细的统计,语法和rollup类似

假设有n个维度,那么rollup会有n个聚合,cube会有2n个聚合

rollup统计列

rollup(a,b) 统计列包含:(a,b)、(a)、()

rollup(a,b,c) 统计列包含:(a,b,c)、(a,b)、(a)、()

....

cube统计列

cube(a,b) 统计列包含:(a,b)、(a)、(b)、()

cube(a,b,c) 统计列包含:(a,b,c)、(a,b)、(a,c)、(b,c)、(a)、(b)、(c)、()

....

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值