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

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 Employee
FROM
    employee a
LEFT JOIN employee b ON a.Id = b.ManagerId
WHERE
    a.Salary < b.Salary

思路:

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


Other People’s Solutions:

Select emp.Name from
Employee emp inner join Employee manager
on emp.ManagerId = manager.Id
where 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
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值