删除SQL 某个表中重复的记录

假如表为Mytable
select distinct * from into 临时表 from MyTable
delete from MyTable insert into MyTable
slect * from 临时表 
drop table 临时表

编程技巧