1.Except
查找 在A表中 但不在 B中的数据
select * from A except select * from B
2.intersect
查找在A表中 也在B表中的数据
select * from A intersect select * from B