Oracle
 sql >> Base de données >  >> RDS >> Oracle

Requête de groupe/compte Oracle

Essayez celui-ci (je ne l'ai pas testé):

with t2 as (
    select  ColA2, ColB2, count(*) cnt 
    from TableTwo
    group by ColA2, ColB2 
)
select t1.Id1,
(  select max(cnt) MaxDup
   from t2
   where t2.ColA2=t1.Id1)
from TableOne t1