在Oracle数据库表中返回给定列的重复值及其出现次数的最简单SQL语句是什么?

例如:我有一个列为JOB_NUMBER的JOBS表。如何才能知道我是否有任何重复的JOB_NUMBERs,以及它们重复了多少次?


当前回答

1. 解决方案

select * from emp
    where rowid not in
    (select max(rowid) from emp group by empno);

其他回答

我能想到的最简单的:

select job_number, count(*)
from jobs
group by job_number
having count(*) > 1;

在多个列标识唯一行的情况下(例如关系表),你可以使用以下

使用行id 例如emp_dept(empid, deptid,开始日期,结束日期) 假设empid和deptid是唯一的,并在这种情况下标识行

select oed.empid, count(oed.empid) 
from emp_dept oed 
where exists ( select * 
               from  emp_dept ied 
                where oed.rowid <> ied.rowid and 
                       ied.empid = oed.empid and 
                      ied.deptid = oed.deptid )  
        group by oed.empid having count(oed.empid) > 1 order by count(oed.empid);

如果这样的表有主键,那么使用主键而不是rowid,例如id是pk那么

select oed.empid, count(oed.empid) 
from emp_dept oed 
where exists ( select * 
               from  emp_dept ied 
                where oed.id <> ied.id and 
                       ied.empid = oed.empid and 
                      ied.deptid = oed.deptid )  
        group by oed.empid having count(oed.empid) > 1 order by count(oed.empid);

我通常使用Oracle分析函数ROW_NUMBER()。

假设您想检查构建在列(c1, c2, c3)上的唯一索引或主键的副本。 然后你将这样做,打开ROW_NUMBER()带来的行数为>1的行数的ROWID s:

Select *
From Table_With_Duplicates
Where Rowid In (Select Rowid
                  From (Select ROW_NUMBER() Over (
                                 Partition By c1, c2, c3
                                 Order By c1, c2, c3
                               ) nbLines
                          From Table_With_Duplicates) t2
                 Where nbLines > 1)

按COUNT聚合列,然后使用HAVING子句查找出现多次的值。

SELECT column_name, COUNT(column_name)
FROM table_name
GROUP BY column_name
HAVING COUNT(column_name) > 1;

我知道这是一个老帖子,但这可能会帮助一些人。

如果你需要打印表的其他列,同时检查重复使用如下:

select * from table where column_name in
(select ing.column_name from table ing group by ing.column_name having count(*) > 1)
order by column_name desc;

如果需要,还可以在where子句中添加一些额外的过滤器。