SQL 删除重复数据

delete from table where id not in (
select max(id) from table group by 字段
)

posted on 2013-04-11 17:44  锥子  阅读(131)  评论(0编辑  收藏  举报