https://leetcode.com/problems/employees-earning-more-than-their-managers/
Employees Earning More Than Their Managers - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
Table: Employee
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| id | int |
| name | varchar |
| salary | int |
| managerId | int |
+-------------+---------+
id is the primary key column for this table.
Each row of this table indicates the ID of an employee, their name, salary, and the ID of their manager.
Write an SQL query to find the employees who earn more than their managers.
Return the result table in any order.
The query result format is in the following example.
Example 1:
Input:
Employee table:
+----+-------+--------+-----------+
| id | name | salary | managerId |
+----+-------+--------+-----------+
| 1 | Joe | 70000 | 3 |
| 2 | Henry | 80000 | 4 |
| 3 | Sam | 60000 | Null |
| 4 | Max | 90000 | Null |
+----+-------+--------+-----------+
Output:
+----------+
| Employee |
+----------+
| Joe |
+----------+
Explanation: Joe is the only employee who earns more than his manager.
SELECT e.name AS Employee
FROM Employee e
INNER JOIN Employee m ON e.managerID = m.id
WHERE e.salary > m.salary
SELECT e.name AS Employee_name,
e.salary AS Employee_salary,
m.name AS Manager_name,
m.salary AS Manager_salary
FROM Employee e
INNER JOIN Employee m ON e.managerID = m.id
["Employee_name", "Employee_salary", "Manager_name", "Manager_salary"]
["Joe", 70000, "Sam", 60000]
["Henry", 80000, "Max", 90000]
Symmetric Pairs(HackerRank) (0) | 2022.07.20 |
---|---|
Rising Temperature(LeetCode) (0) | 2022.07.20 |
Customers Who Never Order(LeetCode) (0) | 2022.07.20 |
Reformat Department Table(LeetCode) (0) | 2022.07.20 |
Type of Triangle(HackerRank) (0) | 2022.07.18 |
댓글 영역