PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

selezionando una colonna in base a un valore minimo di un'altra colonna

In SQL standard questo può essere fatto usando una funzione finestra

select test_type, model, firmware_version, avg_throughput
from (
  select test_type, model, firmware_version, avg_throughput, 
         min(firmware_version) over (partition by test_type, model) as min_firmware
  from temp_table
) t
where firmware_version = min_firmware;

Postgres tuttavia ha il distinct on operatore che di solito è più veloce della soluzione corrispondente con una funzione finestra:

select distinct on (test_type, model) 
       test_type, model, firmware_version, avg_throughput
from temp_table
order by test_type, model, firmware_version;

Esempio di SQLFiddle:http://sqlfiddle.com/#!15/563bd/1