力扣sql

力扣刷题之sql(简单176题)

力扣sql_第1张图片
代码1:
不足:
没有考虑不存在第二高薪水的情况
使用distinct的原因:
假设第一高的薪水存在10个人,那么第二高薪水就不能被显示出来

select distinct salary  AS SecondHighestSalary
from Employee 
order by salary desc 
limit 1,1;

代码2:
正确:
考虑到了如果不存在第二高薪水,返回NULL的情况
知识点:
ifnull(x,y) 若x不为空则返回x,否则返回y,这道题y=null
limit x,y 找到对应的记录就停止(从第x+1条记录开始,显示y条记录)x从0开始
distinct 过滤关键字

select 
ifnull
(
    (select distinct Salary
    from Employee
    order by Salary desc
    limit 1,1),
    null
)as 'SecondHighestSalary'

你可能感兴趣的:(力扣刷题之sql,mysql,数据库)