欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

oracle数据去重语句介绍

程序员文章站 2022-05-03 20:22:16
简单的一条语句:delete from 表名 where (id) in ( select id from 表名 group by id having count(id) > 1) and r...

简单的一条语句:delete from 表名 where (id) in ( select id from 表名 group by id having count(id) > 1) and rowid not in (select min(rowid) from 表名 group by id having count(*) > 1);