Skip to content
On this page

176. Second Highest Salary

https://leetcode.com/problems/second-highest-salary/

sql
select max(Salary) from Employee where Salary not in (select max(Salary) from Employee)