VIRTUALS

the virtual labs for the virtuals

0%

LeetCode 181. 超过经理收入的员工

摘要:
依然是自连接查询题。

题目

LeetCode 181. 超过经理收入的员工

自连接

1
2
3
4
5
6
select 
a.name as Employee
from Employee a
inner join Employee b
where a.managerId = b.id
and a.salary > b.salary;

因为要用每一项的managerId查询对应薪水,不难想到使用自连接查询,将连接条件设置为id和managerId。使得同一张表的每条记录的id和managerId形成映射关系。