We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 419ea47 commit beebd82Copy full SHA for beebd82
src/main/kotlin/g0101_0200/s0181_employees_earning_more_than_their_managers/script.sql
@@ -1,4 +1,4 @@
1
# Write your MySQL query statement below
2
# #Easy #Database #2022_06_27_Time_315_ms_(94.44%)_Space_0B_(100.00%)
3
select a.Name as Employee from Employee a left join Employee b on a.ManagerId=b.Id
4
-where a.Salary > b.Salary and a.ManagerId is not null
+where a.Salary > b.Salary and a.ManagerId is not null
0 commit comments