SQL 删除重复数据

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

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