No video

Employees Whose Manager Left the Company - Leetcode 1978 | Week 4 | Qs 18 | SQL

  Рет қаралды 357

The Big Data Show

The Big Data Show

2 жыл бұрын

Leetcode - 1978. Employees Whose Manager Left the Company
Do Like, Comment & Subscribe...
𝗝𝗼𝗶𝗻 𝗺𝗲 𝗼𝗻 𝗦𝗼𝗰𝗶𝗮𝗹 𝗠𝗲𝗱𝗶𝗮:
🔅 LinkedIn - / ankur-ranjan-35787414b
🔅 Instagram - / ranjan_anku
SQL Question
Write an SQL query to report the IDs of the employees whose salary is strictly less than $30000 and whose manager left the company.
SQL Schema
Create table If Not Exists Employees (employee_id int, name varchar(20), manager_id int, salary int)
Truncate table Employees
insert into Employees (employee_id, name, manager_id, salary) values ('3', 'Mila', '9', '60301')
insert into Employees (employee_id, name, manager_id, salary) values ('12', 'Antonella', 'None', '31000')
insert into Employees (employee_id, name, manager_id, salary) values ('13', 'Emery', 'None', '67084')
insert into Employees (employee_id, name, manager_id, salary) values ('1', 'Kalel', '11', '21241')
insert into Employees (employee_id, name, manager_id, salary) values ('9', 'Mikaela', 'None', '50937')
insert into Employees (employee_id, name, manager_id, salary) values ('11', 'Joziah', '6', '28485')
Table: Employees
+-----------------------+--------------+
| Column Name | Type |
+-----------------------+--------------+
| employee_id | int |
| name | varchar |
| manager_id | int |
| salary | int |
+----------------------+--------------+
employee_id is the primary key for this table.
This table contains information about the employees, their salary, and the ID of their manager. Some employees do not have a manager (manager_id is null).
Write an SQL query to report the IDs of the employees whose salary is strictly less than $30000 and whose manager left the company. When a manager leaves the company, their information is deleted from the Employees table, but the reports still have their manager_id set to the manager that left.
Return the result table ordered by employee_id.
The query result format is in the following example.
Example 1:
Input:
Employees table:
+--------------------+-------------------+-------------------+----------+
| employee_id | name | manager_id | salary |
+--------------------+-------------------+--------------------+----------+
| 3 | Mila | 9 | 60301 |
| 12 | Antonella | null | 31000 |
| 13 | Emery | null | 67084 |
| 1 | Kalel | 11 | 21241 |
| 9 | Mikaela | null | 50937 |
| 11 | Joziah | 6 | 28485 |
+-------------------+-----------------+----------------------+--------+
Output:
+-------------+
| employee_id |
+-------------+
| 11 |
+-------------+
Explanation:
The employees with a salary less than $30000 are 1 (Kalel) and 11 (Joziah).
Kalel's manager is employee 11, who is still in the company (Joziah).
Joziah's manager is employee 6, who left the company because there is no row for employee 6 as it was deleted

Пікірлер
The Most Recent Three Orders - Leetcode 1532 | Week 4 | Qs 19 | SQL
7:09
Harley Quinn's revenge plan!!!#Harley Quinn #joker
00:59
Harley Quinn with the Joker
Рет қаралды 11 МЛН
If Barbie came to life! 💝
00:37
Meow-some! Reacts
Рет қаралды 60 МЛН
Harley Quinn's plan for revenge!!!#Harley Quinn #joker
00:49
Harley Quinn with the Joker
Рет қаралды 31 МЛН
WORLD'S SHORTEST WOMAN
00:58
Stokes Twins
Рет қаралды 182 МЛН
Data Modeling in the Modern Data Stack
10:14
Kahan Data Solutions
Рет қаралды 99 М.
How I would learn Data Engineering (if I could start over)
11:21
Database Indexing for Dumb Developers
15:59
Laith Academy
Рет қаралды 51 М.
Solving SQL Interview Queries | Tricky SQL Interview Queries
37:22
Harley Quinn's revenge plan!!!#Harley Quinn #joker
00:59
Harley Quinn with the Joker
Рет қаралды 11 МЛН