常用sql记录

删除全字段重复记录

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);

posted @ 2018-04-27 14:49  telazy  阅读(153)  评论(0编辑  收藏  举报