设为首页 加入收藏

TOP

LeetCode——Employees Earning More Than Their Managers
2019-10-09 20:06:07 】 浏览:46
Tags:LeetCode 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      |
+----------+

这种单表比较条件,一般都是表内进行join操作.
参照此思路,解题如下所示:

# Write your MySQL query statement below
SELECT 
    a.Name AS Employee 
FROM Employee a, Employee b
WHERE
    a.ManagerId = b.Id
    AND a.Salary > b.Salary; 

运行效率在可以接受的范围,此外语句也较为清晰便于维护.

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇LeetCode——Duplicate Emails(.. 下一篇MySQL(学生表、教师表、课程表、..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目