Oracle
 sql >> Database >  >> RDS >> Oracle

Come ottenere altre colonne con non sono nella clausola GROUP BY in un Oracle select sql?

Prova con funzioni analitiche e subquery

select movie_id, movie_title, category, sales_amt 
from (
  select movie_id, movie_title, category, sales_amt, 
  row_number() over (partition by category order by sales_amt desc) r 
  from movie
) where r = 1