SQL implementation of LeetCode (181. Employees earn more than managers)

SQL implementation of LeetCode (181. Employees earn more than managers)

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

This question gives us an Employee table, which contains the salary information of employees and their managers. Managers are also employees, and their manager ID is empty. Let's find out the employees whose salary is higher than their managers. Then it is a very simple comparison problem. We can generate two instance objects to interpolate through ManagerId and Id, and then restrict the condition that one Salary is greater than the other:

Solution 1:

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

We can also skip Join and directly write all the conditions into where:

Solution 2:

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

References:

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

This is the end of this article about SQL implementation of LeetCode (181. Employees earn more than managers). For more relevant SQL implementation of employees earning more than managers, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • SQL implementation of LeetCode (196. Delete duplicate mailboxes)
  • SQL implementation LeetCode (185. Top three highest salaries in the department)
  • SQL implementation of LeetCode (184. The highest salary in the department)
  • SQL implementation of LeetCode (183. Customers who have never placed an order)
  • SQL implementation of LeetCode (182. Duplicate mailboxes)
  • SQL implements LeetCode (180. Continuous numbers)
  • C++ implementation of LeetCode (179. Maximum number of combinations)
  • SQL implementation of LeetCode (197. Rising temperature)

<<:  How to use CSS to fill the parent container div with img images and adjust the container size

>>:  How to make an input text box change length according to its content

Recommend

MySQL 8.0.24 version installation and configuration method graphic tutorial

This article records the installation and configu...

Pitfalls and solutions for upgrading MySQL 5.7.23 in CentOS 7

Preface Recently, I found a pitfall in upgrading ...

Problems and solutions encountered when installing mininet on Ubuntu 16.04.4LTS

Mininet Mininet is a lightweight software defined...

How to start a transaction in MySQL

Preface This article mainly introduces how to sta...

MySQL 5.7.16 free installation version graphic tutorial under Linux

This article shares the MySQL 5.7.16 free install...

Html Select uses the selected attribute to set the default selection

Adding the attribute selected = "selected&quo...

Implementation of static website layout in docker container

Server placement It is recommended to use cloud s...

Detailed steps to install docker in 5 minutes

Installing Docker on CentOS requires the operatin...

Docker image import and export code examples

Import and export of Docker images This article i...

The whole process of implementing the summary pop-up window with Vue+Element UI

Scenario: An inspection document has n inspection...

Zen Coding Easy and fast HTML writing

Zen Coding It is a text editor plugin. In a text ...

CSS uses the autoflow attribute to achieve seat selection effect

1. Autoflow attribute, if the length and width of...

WeChat applet to determine whether the mobile phone number is legal example code

Table of contents Scenario Effect Code Summarize ...