如何删除一张表的重复记录

有时候我们的表中的内容会有重复 的记录,这时候为了减少内存的冗余,我们就需要删除重复记录

我们分以下四步将重复记录删除:

1.把A表的记录distinct后的结果放入到temp(临时表)

  select distinct * into temp from A

2.把A表的记录清空

  delete from A

3.把temp表的数据(没有重复记录)再插入到A表

  insert into A select * from temp

4.删除临时表

  drop table temp 

你可能感兴趣的:(删除,重复记录)