题解 | #获取当前薪水第二多的员工的emp_no以及其对应的薪水salary#

获取当前薪水第二多的员工的emp_no以及其对应的薪水salary

http://www.nowcoder.com/practice/8d2c290cc4e24403b98ca82ce45d04db

题解为
select emp_no,salary from salaries s1
where s1.salary=
(select salary
from salaries
order by salary desc limit 1,1)
order by s1.emp_no ;
解释:
首先找出第二高的工资 Second_salary
select salary
from salaries
order by salary desc limit 1,1;

子查询,再找出等于第二工资的所有员工的信息,
select emp_no,salary from salaries s1
where s1.salary=Second_salary
order by s1.emp_no ;
最后合并起来的时候表名字要重命名
全部评论

相关推荐

点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务