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

come scrivere query sql per selezionare righe con valore massimo in una colonna

Questo tipo di requisito (in cui hai bisogno del massimo o del minimo per una colonna, raggruppato per un'altra, ma hai bisogno di tutti i dati dalla riga del massimo o del minimo) è praticamente ciò che funzioni analitiche sono per. Ho usato row_number - se sono possibili pareggi, devi chiarire l'assegnazione (vedi il mio Commento sotto la tua domanda) e, a seconda dei dettagli, un'altra funzione analitica potrebbe essere più appropriata - forse rank() .

with
     my_table ( id, name, ref, dt, frm ) as (
       select 10, 'Ant' , 100, date '2017-02-02', 'David' from dual union all
       select 10, 'Ant' , 300, date '2016-01-01', 'David' from dual union all
       select  2, 'Cat' ,  90, date '2017-09-09', 'David' from dual union all
       select  2, 'Cat' , 500, date '2016-02-03', 'David' from dual union all
       select  3, 'Bird', 150, date '2017-06-28', 'David' from dual
     )
-- End of simulated table (for testing purposes only, not part of the solution).
-- SQL query begins BELOW THIS LINE.
select   id, name, ref, dt, frm
from     (
           select id, name, ref, dt, frm,
                  row_number() over (partition by id order by ref desc, dt desc) as rn
           from   my_table
         )
where    rn = 1
order by dt desc
;

ID  NAME  REF  DT          FRM 
--  ----  ---  ----------  -----
 3  Bird  150  2017-06-28  David
 2  Cat   500  2016-02-03  David
10  Ant   300  2016-01-01  David