码迷,mamicode.com
首页 > 其他好文 > 详细

177. Nth Highest Salary

时间:2020-02-11 18:53:28      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:statement   sts   distinct   mysql   sele   col   set   employee   bsp   

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

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

For example, given the above Employee table, the nth highest salary where n = 2 is 200. If there is no nth highest salary, then the query should return null.

+------------------------+
| getNthHighestSalary(2) |
+------------------------+
| 200                    |
+------------------------+
 1 CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
 2 BEGIN
 3   SET N = N - 1;
 4   RETURN (
 5       # Write your MySQL query statement below.
 6       
 7       SELECT DISTINCT Salary 
 8       FROM Employee
 9       ORDER BY Salary DESC
10       LIMIT N, 1
11   );
12 END

 

177. Nth Highest Salary

标签:statement   sts   distinct   mysql   sele   col   set   employee   bsp   

原文地址:https://www.cnblogs.com/hyxsolitude/p/12296161.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!