题目描述
编写一个 SQL 查询,获取并返回 Employee 表中第二高的薪水 。如果不存在第二高的薪水,查询应该返回 null 。
遇到的难题
难题1 找到薪资第二高的薪水
目前遇到的难题,如何找到薪资第二高的薪水
函数limit [num] offset [num]
- 其中 offset 要配合limit使用
- limit [num] 就是显示几条记录
- offset [num] 就是跳过前几条记录
select distinct salary
from Employee
group by salary
order by salary desc
limit 1 offset 1
难题2 如果第二高不存在就设为null
ifnull([], null)
select
ifnull(
(select distinct salary
from Employee
group by salary
order by salary desc
limit 1 offset 1),null
) as SecondHighestSalary
标签:salary,薪水,第二,num,limit,offset,176,null
From: https://www.cnblogs.com/wwx-tyut/p/17031549.html