Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 267 Bytes

176. Second Highest Salary.md

File metadata and controls

9 lines (8 loc) · 267 Bytes

176. Second Highest Salary

Question Link

Solution

# Write your MySQL query statement below
select max(salary) SecondHighestSalary from Employee
where salary < (select max(salary) from Employee)