SQL 第二高的薪水
阿新 • • 發佈:2019-03-16
solution sel from highest 獲取 query des 編寫 mys
編寫一個 SQL 查詢,獲取 Employee
表中第二高的薪水(Salary) 。
+----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300 | +----+--------+
例如上述 Employee
表,SQL查詢應該返回 200
作為第二高的薪水。如果不存在第二高的薪水,那麽查詢應返回 null
。
+---------------------+ | SecondHighestSalary | +---------------------+ | 200 | +---------------------+
Solution Code
# Write your MySQL query statement below
select IFNULL(
(select DISTINCT salary
from employee
ORDER BY salary
DESC LIMIT 1,1), null
) as "SecondHighestSalary"
SQL 第二高的薪水