如何使用oracle伪列删除表中重复记录?

delete from table t  where t.rowid != (select  max(t1.rowid)  from  table t1 where  t1.name=t.name)

【Java面试题与答案】整理推荐

发布了418 篇原创文章 · 获赞 1442 · 访问量 152万+

猜你喜欢

转载自blog.csdn.net/meism5/article/details/104219036