# Write your MySQL query statement below
#先查询最大值然后找到小于最大值的最大值
#起别名 as
#自动补null
#select max(salary) as SecondHighestSalary
#from Employee
#where salary < (select max(salary) from Employee);
#考虑排序然后选择第二个元素输出一个就行
#没找到输出null, select ifNull(select(...), null);
#distinct 去重
#limit默认从0开始,因为找第二大从1开始,后面的1指输出1个;然而,如果没有这样的第二最高工资,这个解决方案将被判断为 “错误答案”,因为本表可能只有一项记录。为了克服这个问题,我们可以将其作为临时表,即select( select ...) as;
select ifNull((
select distinct salary
from Employee
order by salary desc limit 1,1),null) as SecondHighestSalary;
《学习MySQL语句》——第三天
于 2023-03-31 11:42:50 首次发布
文章介绍了一种在MySQL中查询员工表中次高薪资的方法,通过查询语句首先找出最大薪资,然后选择小于最大薪资的最大值。如果不存在这样的次高薪资,则返回NULL。查询过程中使用了别名、ORDERBY、LIMIT和IFNULL函数来处理可能的单条记录情况。
摘要由CSDN通过智能技术生成