多表sql查询求和

昨天由于需要统计某一时间段内的数据,需要两张关联表的数据和,

表A的sql查询结果

select count(*)
          from 表A  a
         where a.task_type = 2
           and a.create_time >= to_date('2017-01-30', 'yyyy-MM-dd')
           and a.create_time < to_date('2017-07-07', 'yyyy-MM-dd')


表B的sql查询结果


 select count(*)
          from 表B  b
         where b.task_type = 2
           and b.create_time >= to_date('2017-01-30', 'yyyy-MM-dd')
           and b.create_time < to_date('2017-07-07', 'yyyy-MM-dd')


求两条sql之和,使用union all函数

select count(*)
  from (select *
          from 表A A
         where a.task_type = 2
           and a.create_time >= to_date('2017-01-30', 'yyyy-MM-dd')
           and a.create_time < to_date('2017-07-07', 'yyyy-MM-dd')
        union all
        select *
          from 表B  b
         where b.task_type = 2
           and b.create_time >= to_date('2017-01-30', 'yyyy-MM-dd')
           and b.create_time < to_date('2017-07-07', 'yyyy-MM-dd'));


此处UNION ALL 这个指令的目的也是要将两个 SQL 语句的结果合并在一起。 UNION ALL 和UNION 不同之处在于UNION ALL 会将每一个符合条件的资料都列出来,无论资料值有无重复

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值