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);
上一篇: JSP中EL表达式的应用以及常用的方法
下一篇: spring和struts整合