美文网首页
第N高薪水

第N高薪水

作者: 薛定谔与猫的故事 | 来源:发表于2018-04-24 18:20 被阅读0次
    描述
    CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT
    BEGIN
    declare M INT;
    set M = N-1;
      RETURN (
          select e.Salary 
          from(select Salary from Employee
              union select null as Salary) as e
          order by Salary desc
          limit M,1
      );
    END
    

    相关文章

      网友评论

          本文标题:第N高薪水

          本文链接:https://www.haomeiwen.com/subject/nmajlftx.html