码迷,mamicode.com
首页 > 数据库 > 详细

Oracle Partition Outer Join 稠化报表

时间:2015-10-09 13:40:03      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:

partition outer join实现将稀疏数据转为稠密数据,举例:

with t as
 (select deptno, job, sum(sal) sum_sal from emp group by deptno, job),
tt as
 (select distinct job from t)
select b.deptno, a.job, sum_sal
  from tt a
  left join t b partition by (b.deptno)
    on a.job = b.job

数据显示结果:

 

技术分享

按照所有deptno和job显示出sal总值,没有对应值显示为空。

具体资料参考:

http://blog.sina.com.cn/s/blog_4cef5c7b01016lm5.html

Oracle Partition Outer Join 稠化报表

标签:

原文地址:http://www.cnblogs.com/mellowsmile/p/4863561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!