2个表对比去掉重复记录表A和表B如果表A中字段abc的记录在表B中abc字段中存在,就删除表A中的记录该怎么做?求助,在线等候 [解决办法]
delete from A where exists(select 1 from B where A.abc = b.abc)