码迷,mamicode.com
首页 > 数据库 > 详细

oracle中结果集的交集、并集、差集组合查询

时间:2020-02-10 09:49:28      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:oracl   bsp   union all   table   集中   查询   nio   并集   过滤   

 

1.交集

intersect:返回查询结果集中的共同部分。

    SELECT student_id,student_name FROM student_table1
    INTERSECT  
    SELECT student_id,student_name FROM student_table2

2.差集
minus:返回第一个结果集中存在而第二个结果集中不存在的部分结果集。

  SELECT student_id,student_name FROM student_table1
  MINUS  
  SELECT student_id,student_name FROM student_table1

3.并集
a>  union/union all:将两个结果集合并,合并结果没有过滤重复内容

    SELECT student_id,student_name FROM student_table1
    UNION ALL   
    SELECT student_id,student_name FROM student_table1

b>union:将两个结果集合并,去掉相同的部分结果集,去重

    SELECT student_id,student_name FROM student_table1
    UNION  
    SELECT student_id,student_name FROM student_table1

oracle中结果集的交集、并集、差集组合查询

标签:oracl   bsp   union all   table   集中   查询   nio   并集   过滤   

原文地址:https://www.cnblogs.com/sunshine5683/p/12289782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!