你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

各部门工资前三员工信息方法解析

2021/11/25 11:17:55

文章目录

  • 部门工资前三高的员工
    • 题目
    • 解析

部门工资前三高的员工

题目

在这里插入图片描述

解析

第一步:找到每部门前三名的工资,注意可以有的部门前三名的工资人数不足三个,当然也有可能多于3,该怎么解决,当时我看答案清一色的3>count,我也是一脸蒙蔽,看了多家的解析才看懂,对于我这种小白也是一大挑战了。

select e1.Salary from Employee as e1 
where 3 > (select count(distinct e2.Salary) 
from Employee as e2 where e1.Salary < e2.Salary and e1.DepartmentId = e2.DepartmentId)
123

每个部门前三的工资,下面的那个条件是e1表<e2表的数据可以分为多少种情况; 我们要前三名的工资,第一名不会小于e2,此时count=0,第二名只能小于e2的最大值,count=1;第三名只能小于第二名和第一名,count= 2,因此count<3,而且是distinct后的count
这是某大神给的解释:
在这里插入图片描述
第二步,表 Department 和表 Employee 连接,获得各个部门工资前三高的员工。

select d.Name as Department, e1.Name as Employee, e1.Salary from Employee as e1, Department as d 
where e1.DepartmentId = d.Id 
and 3 > 
(select count(distinct e2.Salary) 
from Employee as e2 where e1.Salary < e2.Salary 
and e1.DepartmentId = e2.DepartmentId) 
order by d.Name,e1.Salary desc;