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的交集是什么函数来的?
select * from a union select * from b 是求A和B的DISTINCT的并集
select * from a union all select * from b 是求A和B的冗余并集
那么A和B的交集是什么函数来的?
交集是 INTERSECT