转自:https://www.cnblogs.com/GreenLeaves/p/6635887.html
本文使用到的是oracle数据库scott方案所带的表,scott是oracle数据库自带的方案,使用前请确保其解锁
Oracle合并查询一共有四种方式,分别使用不同的关键字:UNION、UNION ALL、MINUS、INTERSECT
1、UNION ALL
使用UNION ALL,表示取A、B的合集,不过滤重复的数据行,代码如下:
select * from emp where sal>2500
左图表示结果集A
select * from emp where JOB=‘MANAGER‘
左图表示结果集B
现在分析结果集A和结果集B,发现
红框中的数据重复了,接着我们在使用UNION ALL关键字
select * from emp where sal>2500 UNION ALL select * from emp where JOB=‘MANAGER‘
UNION ALL 重复数据并没有被排除掉
2、UNION
使用UNION,会将结果集A和结果集B进行UNION ALL运算,然后取两者交集的余集作为结果集
代码如下:
select * from emp where sal>2500 UNION select * from emp where JOB=‘MANAGER‘
原先使用UNION ALL中重复的记录行被排除掉了
3、Intersect
使用Intersect,会将结果集A和结果集B进行UNION ALL运算,然后两者之间的集交集作为结果集和UNION刚好相反
select * from emp where sal>2500 INTERSECT select * from emp where JOB=‘MANAGER‘
将两个结果集的交集检索出来了
4、MINUS
使用MINUS,取结果集A减去结果集B留下的差集,注:如果结果集A小于等于结果集B,返回空结果集.
select * from emp where sal>2500
左图表示结果集A
select * from emp where JOB=‘MANAGER‘
左图表示结果集B
select * from emp where sal>2500 MINUS select * from emp where JOB=‘MANAGER‘
原文地址:https://www.cnblogs.com/sharpest/p/10508336.html
时间: 2024-10-08 00:31:34