Mysql
 sql >> Database >  >> RDS >> Mysql

Ottieni il secondo stipendio più alto per ogni persona in MySQL

Usando la funzione di aggregazione e l'auto join potresti fare qualcosa come

select a.*
from demo a
left join demo b on a.person_id = b.person_id
group by a.person_id,a.salary
having sum(a.salary < b.salary) = 1 /* 0 for highest 1 for second highest 2 for third and so on ... */

o utilizzando l'espressione maiuscola completa in sum

having sum(case when a.salary < b.salary then 1 else 0 end)  = 1

Demo