SQL 删除存在于A表但是不存在B表中的记录

目的是是的A表和B表某一个列集合相等

delete from A where tagetColumn not in ( select targetColumn from B)

原文地址:https://www.cnblogs.com/coolbear/p/3517752.html