主页 > 知识库 > SQL实现LeetCode(181.员工挣得比经理多)

SQL实现LeetCode(181.员工挣得比经理多)

热门标签:Linux服务器 铁路电话系统 网站排名优化 服务外包 AI电销 百度竞价排名 地方门户网站 呼叫中心市场需求

[LeetCode] 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      |
+----------+

这道题给我们了一个Employee表,里面有员工的薪水信息和其经理的信息,经理也属于员工,其经理Id为空,让我们找出薪水比其经理高的员工,那么就是一个很简单的比较问题了,我们可以生成两个实例对象进行内交通过ManagerId和Id,然后限制条件是一个Salary大于另一个即可:

解法一:

SELECT e1.Name FROM Employee e1
JOIN Employee e2 ON e1.ManagerId = e2.Id
WHERE e1.Salary > e2.Salary;

我们也可以不用Join,直接把条件都写到where里也行:

解法二:

SELECT e1.Name FROM Employee e1, Employee e2
WHERE e1.ManagerId = e2.Id AND e1.Salary > e2.Salary;

参考资料:

https://leetcode.com/discuss/88189/two-straightforward-way-using-where-and-join

到此这篇关于SQL实现LeetCode(181.员工挣得比经理多)的文章就介绍到这了,更多相关SQL实现员工挣得比经理多内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
  • SQL实现LeetCode(196.删除重复邮箱)
  • SQL实现LeetCode(185.系里前三高薪水)
  • SQL实现LeetCode(184.系里最高薪水)
  • SQL实现LeetCode(183.从未下单订购的顾客)
  • SQL实现LeetCode(182.重复的邮箱)
  • SQL实现LeetCode(180.连续的数字)
  • C++实现LeetCode(179.最大组合数)
  • SQL实现LeetCode(197.上升温度)

标签:黄山 湘潭 崇左 仙桃 铜川 湖南 衡水 兰州

巨人网络通讯声明:本文标题《SQL实现LeetCode(181.员工挣得比经理多)》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266