删除全字段重复记录
delete from table where id not in (select T.id from (select max(id) AS id from table group by a,b,c) AS T);