UnitedHealth Group Interview Question

write a query to display highest 2nd salary in table ?

Interview Answer

Anonymous

Mar 30, 2019

select max(salary) from table_name where salary < (select max(salary) from table_name)