select * from a minus select * from b  是求A中不存在于B的记录
select * from a union select * from b  是求A和B的DISTINCT的并集
select * from a union all select * from b 是求A和B的冗余并集
那么A和B的交集是什么函数来的?
交集是 INTERSECT


相关文章:

  • 2021-11-10
  • 2022-12-23
  • 2021-06-19
  • 2021-08-11
  • 2021-11-06
  • 2022-12-23
  • 2021-12-12
猜你喜欢
  • 2022-12-23
  • 2021-12-02
  • 2022-12-23
  • 2022-01-16
  • 2021-06-04
  • 2022-02-02
  • 2021-12-21
相关资源
相似解决方案