【leetcode SQL】Second Highest Salary,leetcodehighest
原题如下:
Write a SQL query to get the second highest salary from the Employee table.
+----+--------+ | Id | Salary | +----+--------+ | 1 | 100 | | 2 | 200 | | 3 | 300 | +----+--------+
For example, given the above Employee table, the second highest salary is 200. If there
is no second highest salary, then the query should return null.
# Write your MySQL query statement below select max(Salary) from Employee where Salary<(select max(Salary) from Employee )思路是先查出工资最高的,然后再查剩下的人里面工资最高的,就是第二高的了~
本站文章为和通数据库网友分享或者投稿,欢迎任何形式的转载,但请务必注明出处.
同时文章内容如有侵犯了您的权益,请联系QQ:970679559,我们会在尽快处理。