[LeetCode] 181.Employees Earning More Than Their ManagersThe Employee table holds all employees including their managers. Every employee has an Id, and there is also a column for the manager Id.
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.
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:
|
<<: 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
This article records the installation and configu...
Preface Recently, I found a pitfall in upgrading ...
Mininet Mininet is a lightweight software defined...
Preface This article mainly introduces how to sta...
This article shares the MySQL 5.7.16 free install...
Adding the attribute selected = "selected&quo...
Server placement It is recommended to use cloud s...
Tip: In MySQL, we often need to create and delete...
Installing Docker on CentOS requires the operatin...
Introduction to MySQL logical architecture Overvi...
Import and export of Docker images This article i...
Scenario: An inspection document has n inspection...
Zen Coding It is a text editor plugin. In a text ...
1. Autoflow attribute, if the length and width of...
Table of contents Scenario Effect Code Summarize ...