SET操作符
1.SET操作符
UNION / UNION ALL 取并集
两者区别:
如果两个集合为{1,2,3}和{2,4}
UNION结果为 1,3,4
UNION ALL 结果为 1,4 //不会删除重复元素
INTERSECT 交集
MINUS 差集
2.例
select employee_id
from employee01
union
select employee_id
from employee02
取两个部门编号并集,去重
原文链接:https://www.f2er.com/oracle/210510.html