leetCode-sql-第二高的薪水

编写一个 SQL 查询,获取 Employee 表中第二高的薪水(Salary) 。

leetCode-sql-第二高的薪水_第1张图片

select ifnull(select distinct salary from Employee order by salary desc limit 1 offset 1) as second

你可能感兴趣的:(leetcode,mysql,leetcode)