oracle去除重复字段

delete from 表名 where rowid not in (select min(rowid) from 表名 group by name having count(name)>=1)

代码摘自百度。

原文地址:https://www.cnblogs.com/newlooker/p/3963854.html