码迷,mamicode.com
首页 > 数据库 > 详细

LeetCode 177 Nth-Highest Salary mysql,取第n条数据,limit子句 难度:1

时间:2015-08-26 17:13:16      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

https://leetcode.com/problems/nth-highest-salary/

ATTENTION:limit 子句只能接受int常量,不能接受运算式

CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
BEGIN
SET N = N - 1;
  RETURN (
      # Write your MySQL query statement below.
      select  DISTINCT Salary from Employee Order by  Salary DESC limit N,1
  );
END

  

LeetCode 177 Nth-Highest Salary mysql,取第n条数据,limit子句 难度:1

标签:

原文地址:http://www.cnblogs.com/xuesu/p/4760612.html

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