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

假如表为Mytable
SELECT distinct * FROM i

nto 临时表 from MyTable DELETE from MyTable insert into MyTable SELECT * FROM 临时表 drop table 临时表