oracle_set运营商
①UNION/UNION ALL
UNION 运算符返回的结果集,并设置两个查询。对于这两组重复部分的。重复数据删除例:
select id,name from tableA union select id,name from tableBUNION ALL 操作符返回两个查询的结果集的并集。对于两个结果集的反复部分,不去重。
例:
select id,name from tableA union all select id,name from tableB ②INTERSECTINTERSECT 操作符返回两个结果集的交集
例:
select id,name from tableA intersect select id,name from tableB③MINUS
MINUS操作符:返回两个结果集的差集
例:
select id,name from tableA minus select id,name from tableB注:
1.在SELECT 列表中的列名和表达式在数量和数据类型上要相相应 2.除 UNION ALL之外。系统会自己主动将反复的记录删除 3.系统将第一个查询的列名显示在输出中 4.除 UNION ALL之外,根据自己主动为ASC系统布置在第一列中的第一查询版权声明:本文博客原创文章,博客,未经同意,不得转载。