使用 ORACLE SQL 从具有不同 ID 的相同 table 查找重复项?

Finding duplicates from the same table having different ID using ORACLE SQL?

我想在 CASE_CITATION table 中找到具有不同 OBJECT_ID 的重复 casecitation_entry 值。能请教一下oracle吗SQL?

可以通过多种方式解决此类问题。 EXISTS是典型的:

select t.*
from t
where exists (select 1
              from t t2
              where t2.CASE_CITATION = t.CASE_CITATION and t2.OBJECT_ID <> t.OBJECT_ID
             );