算法的重要性,我就不多说了吧,想去大厂,就必须要经过基础知识和业务逻辑面试+算法面试。所以,为了提高大家的算法能力,这个号后续每天带大家做一道算法题,题目就从LeetCode上面选 !今天和大家聊的问题叫做 第二高的薪水  ,我们先来看题面:https://leetcode-cn.com/problems/second-highest-salary/

 

Write a SQL query to get the second highest salary from the Employee table.

 

题意

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

 

​LeetCode刷题实战176:第二高的薪水_IT

 

解题

取第二高的薪水,可以用max()函数取出最大值,然后排除这个最大值,再取一次最大值即可。这题还有其他方法,大家可以参考下面官方链接看看:https://leetcode-cn.com/problems/second-highest-salary/solution/di-er-gao-de-xin-shui-by-leetcode/

select max(a.salary) as SecondHighestSalary
    from Employee a
   where a.salary <> (select max(a.salary) from Employee a)

好了,今天的文章就到这里。

 

​LeetCode刷题实战176:第二高的薪水_IT_02