176. 第二高的薪水
https://leetcode-cn.com/problems/second-highest-salary/
当不存在并且需要返回null的时候:
1.可以将查询的结果作为临时表
select (select DISTINCT Salary from Employee order by Salary desc limit 1,1) as SecondHighestSalary
2.可以使用 ifnull
SELECT
IFNULL(
(SELECT DISTINCT S
原创
2021-05-21 12:57:54 ·
93 阅读 ·
0 评论