Leetcode笔记:(MySQL)181. Employees Earning More Than Their Managers

来源:互联网 发布:超级seo 编辑:程序博客网 时间:2024/06/09 20:32

The Employee table holds all employees including their managers. Every employee has an Id, and there is also a column for the manager Id.

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

Given the Employee table, write a SQL query that finds out employees who earn more than their managers. For the above table, Joe is the only employee who earns more than his manager.

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

My Solution:

SELECT    b. NAME AS EmployeeFROM    employee aLEFT JOIN employee b ON a.Id = b.ManagerIdWHERE    a.Salary < b.Salary

思路:

先把Employee表中有上司的员工的员工工资信息与上司工资信息连接在同一条记录内,再在同一条记录内比较工资高低。 (应使用inner join
要注意连接后员工信息Employee表以及上司信息Employee表的别名区分。此处a表为上司表,b表为员工表。


Other People’s Solutions:

Select emp.Name fromEmployee emp inner join Employee manageron emp.ManagerId = manager.Idwhere emp.Salary > manager.Salary

摘自 —— https://discuss.leetcode.com/topic/8315/sharing-my-solution/2
作者:mahdy

延伸:

SQL中inner join、outer join和cross join的区别 - This is bill的专属博客 - CSDN博客
http://blog.csdn.net/scythe666/article/details/51881235

阅读全文
1 0
原创粉丝点击