1. 程式人生 > >LeetCode-超過經理收入的員工(employees-earning-more-than-their-managers)

LeetCode-超過經理收入的員工(employees-earning-more-than-their-managers)

超過經理收入的員工

難度 簡單

更多LeetCode答案歡迎大家關注Github: https://github.com/lxyer/LeetCodeAnswer

Employee 表包含所有員工,他們的經理也屬於員工。每個員工都有一個 Id,此外還有一列對應員工的經理的 Id。

+----+-------+--------+-----------+
| Id | Name  | Salary | ManagerId |
+----+-------+--------+-----------+
| 1  | Joe   | 70000  | 3         |
| 2  | Henry | 80000  | 4         |
| 3  | Sam   | 60000  | NULL      |
| 4  | Max   | 90000  | NULL      |
+----+-------+--------+-----------+

給定 Employee 表,編寫一個 SQL 查詢,該查詢可以獲取收入超過他們經理的員工的姓名。在上面的表格中,Joe 是唯一一個收入超過他的經理的員工。

+----------+
| Employee |
+----------+
| Joe      |
+----------+

Solution

Language: MySQL

# Write your MySQL query statement below
select e1.Name Employee from Employee e1 left join Employee e2
on e1.ManagerId=e2.Id
where e1.Salary > e2.Salary;