MySQL里 求在A表中的SFZH和name两列,和B表中的sfzh和name两列没有的数据,如何解决?

MySQL里, 求在A表中的SFZH和name两列,和B表中的sfzh和name两列所没有的数据

或者
A表中的sfzh和name两列和B表中sfzh和name的两列的差别.

select * from a 
where not exists (select 1 from b where a.SFZH=b.sfzh and a.name=b.name)