码迷,mamicode.com
首页 > 数据库 > 详细

oracle 查某一列有重复值的记录

时间:2014-05-16 18:51:53      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:c   a   使用   name   oracle   rom   

-- 查找重复记录
select names,num
from test
where rowid != (select max(rowid)
                 from test b
                where b.names = test.names and
                      b.num = test.num)

或者使用

select names,num
from test
where rownum!= (select max(rownum)
                 from test b
                where b.names = test.names and
                      b.num = test.num)

 

 

oracle 查某一列有重复值的记录,布布扣,bubuko.com

oracle 查某一列有重复值的记录

标签:c   a   使用   name   oracle   rom   

原文地址:http://www.cnblogs.com/rongfengliang/p/3725645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!