LeetCode 181. 超过经理收入的员工 Posted on 2022-09-15 Edited on 2023-07-04 In 指尖飞舞 , 数据库 , MySQL 摘要:依然是自连接查询题。 题目LeetCode 181. 超过经理收入的员工 自连接MySQL123456select a.name as Employeefrom Employee ainner join Employee bwhere a.managerId = b.idand a.salary > b.salary; 因为要用每一项的managerId查询对应薪水,不难想到使用自连接查询,将连接条件设置为id和managerId。使得同一张表的每条记录的id和managerId形成映射关系。 原题链接: LeetCode 181. 超过经理收入的员工 Post author: zxy Post link: https://ntifs.com/2022/09/15/LeetCode-181-超过经理收入的员工/ Copyright Notice: All articles in this blog are licensed under BY-NC-SA unless stating additionally.