集計関数と自己結合を使用すると、
のようなことができます。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 ... */
またはsum
で完全な大文字小文字の表現を使用する
having sum(case when a.salary < b.salary then 1 else 0 end) = 1