如何批量删除access不同表中的重复数据

2024-11-19 21:28:08
推荐回答(1个)
回答(1):

这个....

一步肯定是做不了了

可以这样费点周折

 

第一步,查询俩表相同的b并把相同的b存到临时表

select ab.b into temp from ab,ac where ab.b=ac.b

第二步,删除ab中的数据

delete from ab where b in (select b from temp)

第三步,删除ac中的数据

delete from ac where b in (select b from temp)

第四步,删除临时表

drop table temp