Mysql
 sql >> Base de données >  >> RDS >> Mysql

MySQL :obtenez la nième valeur la plus élevée pour chaque groupe dans une table

J'espère qu'il y a un meilleur moyen, mais vous pouvez l'obtenir en croisant ou non deux sous-requêtes :

Select mytable.Store, mytable.Dept, mytable.Order, mytable.Amount
from mytable m
inner join 
  (Select Amount from mytable n where m.store = n.store and m.dept = n.dept order by Amount desc limit 2) as high_enough
  on mytable.Amount = high_enough.Amount
left join 
   (Select Amount from mytable n where m.store = n.store and m.dept = n.dept order by Amount desc limit 2) as too_high
  where too_high.Amount is null
group by Store, Dept;