sunshine5683

 

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

分类:

技术点:

相关文章:

  • 2021-11-02
  • 2021-11-02
  • 2021-09-07
  • 2021-11-02
  • 2021-09-07
  • 2021-09-07
  • 2021-12-02
  • 2021-11-02
猜你喜欢
  • 2021-11-02
  • 2021-11-02
  • 2021-11-02
  • 2021-11-02
  • 2021-11-02
  • 2021-04-07
  • 2021-11-02
相关资源
相似解决方案