select *
from
  (
     select t.*
     from
        (
          select *,count(1) "COUNT"
          from 表
          group by aa,bb,cc     
        ) t
     order by t.COUNT desc
  )
where rownum=1