首页 > 代码库 > LeetCode_Mysql_Second Highest Salary

LeetCode_Mysql_Second Highest Salary

176. Second Highest Salary

技术分享


1. 问题描写叙述:

写一个sql语句从 Employee 表里获取第二高位的工资。

2. 解决思路:

这道题非常easy,就当热身了。首先用max找到最高工资。
然后去找小于最高工资里的最高工资就是第二高的工资。

3. sql语句:

select Max(Salary) 
from Employee 
where Salary < (select Max(Salary) from Employee)

4. 执行时间:

技术分享


希望多多交流指正!

<script type="text/javascript"> $(function () { $(‘pre.prettyprint code‘).each(function () { var lines = $(this).text().split(‘\n‘).length; var $numbering = $(‘
    ‘).addClass(‘pre-numbering‘).hide(); $(this).addClass(‘has-numbering‘).parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($(‘
  • ‘).text(i)); }; $numbering.fadeIn(1700); }); }); </script>

LeetCode_Mysql_Second Highest Salary