oracle合并查询

oracle合并查询:可以获取多个select语句查询结果集,可供选择集合符:union,union all,intersect,minus.

1、union:可以获取两个或多个查询结果集的合集的并集,会自动去掉结果集中的重复行,返回以第一列的结 果进行排序。

eg:

select a.empiId from ehr_healthrecord a , mpi_demographicinfo b where a.empiId = b.empiId
and a.status = '0' and a.deadflag = '2' and a.createunit like '440606003%'
and a.createDate >= to_date('2014/08/16','yyyy/MM/dd')
and a.createDate <= to_date('2014/09/16','yyyy/MM/dd')

union
select a.empiId from ehr_healthrecord a , mpi_demographicinfo b where a.empiId = b.empiId
and a.createunit like '440606003%' and a.updateDate is not null
and a.updateDate >= to_date('2014/08/16','yyyy/MM/dd')
and a.updateDate <= to_date('2014/09/16','yyyy/MM/dd')

 

2、union all:用于获取两个或多个结果集的并集,不取消重复行,不按照任何列排序。

 

3、intersect:用于获取两个结果集的交集。只会返回同时存在两个或多个结果集中的数据,以第一列进行排序。

 

4、minus:用于获取两个结果集的差集。只会显示在第一个结果集中存在,而在其它结果集中不存在的数据。以第一列进行排序。

 

 

 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值