你的位置:首页 > 软件开发 > 数据库 > Oracle重复数据删除

Oracle重复数据删除

发布时间:2016-02-19 09:00:15
在Oracle数据库中,删除重复数据,大都会使用如下方法:delete from tbl a where rowid<>(select max(b.rowid) from tbl b where a.col1=b.col1 and a.col2 = b.col2); ...

在Oracle数据库中,删除重复数据,大都会使用如下方法:

delete from tbl a where rowid<>(select max(b.rowid) from tbl b where a.col1=b.col1 and a.col2 = b.col2);

原标题:Oracle重复数据删除

关键词:oracle

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录