使用dual 虚表,构造连续数据

模拟一个数据表如下
有三个字段:年、月、数值。但数据不是连续的。如2014年05月 到2015年04月 缺少 2014年06、08、11、12 以及2015年01、02

点击(此处)折叠或打开

  1. select '2014' year ,'05' month ,100 val from dual union all
  2. select '2014' year ,'07' month ,100 val from dual union all
  3. select '2014' year ,'09' month ,100 val from dual union all
  4. select '2014' year ,'10' month ,100 val from dual union all
  5. select '2015' year ,'03' month ,100 val from dual union all
  6. select '2015' year ,'04' month ,100 val from dual
如果要求结果中不能有月份缺少怎么办? 起始年月与终止年月为参数。
下面给出一解决方案,主要是使用dual 表及connect by level 进行生成全月份的一个视图,然后与数据表进行左外连接得到月份连续的结果。

点击(此处)折叠或打开

  1. with v_date as (
  2.      select '2014' year ,'05' month ,100 val from dual union all
  3.      select '2014' year ,'07' month ,100 val from dual union all
  4.      select '2014' year ,'09' month ,100 val from dual union all
  5.      select '2014' year ,'10' month ,100 val from dual union all
  6.      select '2015' year ,'03' month ,100 val from dual union all
  7.      select '2015' year ,'04' month ,100 val from dual
  8. ), DATELIST as (
  9.     select to_char(add_months( to_date('201405','yyyymm') ,level-1 ),'yyyy' ) year,
  10.     to_char(add_months( to_date('201504','yyyymm') ,level-1 ),'mm' ) month
  11.     from dual connect by level <= months_between( to_date('201504','yyyymm'),to_date('201405','yyyymm'))+1
  12. )

  13. select t.year,t.month,t1.val from DATELIST t,v_date t1
  14. where t.year = t1.year(+) and t.month = t1.month(+)
  15. order by t.year,t.month

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/30066956/viewspace-1808318/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/30066956/viewspace-1808318/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值