176. Second Highest Salary(SQL)

# Easy

# Write your MySQL query statement below
select distinct
    Salary as SecondHighestSalary
from Employee
    order by Salary desc 
    limit 1 offset 1; 

Last updated

Was this helpful?