题解 | #获取员工其当前的薪水比其manager当前薪水还高的相关信息#

获取员工其当前的薪水比其manager当前薪水还高的相关信息

http://www.nowcoder.com/practice/f858d74a030e48da8e0f69e21be63bef

第一种解法:找到员工薪水、经理薪水 连接两表 比较

select 
a.emp_no, b.emp_no, a.salary, b.salary
from(
-- 员工薪水
select de.dept_no, sa.emp_no, sa.salary from salaries sa join dept_emp de on sa.emp_no = de.emp_no)a 
JOIN
-- 经理薪水
(select dm.dept_no, s1.emp_no, s1.salary from salaries s1 join dept_manager dm on s1.emp_no = dm.emp_no)b 
on a.dept_no = b.dept_no and a.emp_no <> b.emp_no
where a.salary > b.salary

第二种解法:员工表、经理表、关系表、工资表、工资表联合查询,然后筛选条件

select de.emp_no,dm.emp_no as manager_no,
s1.salary as emp_salary,s2.salary as manager_salary 
FROM
dept_emp de,dept_manager dm, salaries s1, salaries s2
where de.dept_no = dm.dept_no
and de.emp_no = s1.emp_no
and dm.emp_no = s2.emp_no
and s1.salary > s2.salary
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 19:05
点赞 评论 收藏
分享
11-14 16:13
已编辑
重庆科技大学 测试工程师
Amazarashi66:不进帖子我都知道🐮❤️网什么含金量
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务