小言_互联网的博客

Oracle---集合运算(交、并、差)详解

385人阅读  评论(0)

什么是集合运算?

并集

示例:查询10号和20部门的员工

select * from emp where deptno=10
union
select * from emp where deptno=20;

交集


示例:显示薪水同时位于级别1(700 ~ 1300)和级别2(1201 ~ 1400)的员工信息。

select ename,sal from emp where sal between 700 and 1300 
intersect
select ename,sal from emp where sal between 1201 and 1400; 

差集

示例:显示薪水同时位于级别1(700 ~ 1300),但不属于级别2(1201 ~ 1400)的员工信息。

select ename,sal from emp where sal between 700 and 1300 
minus
select ename,sal from emp where sal between 1201 and 1400; 

集合运算的注意事项

  • select语句中参数类型和个数要一致
  • 可以使用括号改变集合执行的顺序
  • 如果有order by子句,必须放到最后一句查询语句后
  • 集合运算采用第一个语句的表头作为表头

转载:https://blog.csdn.net/cold___play/article/details/100776125
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场