0
点赞
收藏
分享

微信扫一扫

Nth Highest Salary


nth highest salary from the ​​Employee​

+----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300 | +----+--------+


nth highest salary where n = 2 is ​​200​​. If there is no nth highest salary, then the query should return ​​null​​.


​​Subscribe​​ to see which companies asked this question

CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
BEGIN
DECLARE M INT;
SET M=N-1;
RETURN (
# Write your MySQL query statement below.
SELECT DISTINCT Salary FROM Employee ORDER by Salary DESC LIMIT M,1
);
END


举报

相关推荐

0 条评论