Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CASE_CITATION テーブルで異なる OBJECT_ID を持つ重複する casecitation_entry 値を見つけたいと思います。オラクルのSQLについて教えてください。
このタイプの問題には、複数の方法でアプローチできます。 EXISTS典型的なものです:
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 );