Skip to content

Commit beebd82

Browse files
authored
Update script.sql
1 parent 419ea47 commit beebd82

File tree

1 file changed

+1
-1
lines changed
  • src/main/kotlin/g0101_0200/s0181_employees_earning_more_than_their_managers

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Write your MySQL query statement below
22
# #Easy #Database #2022_06_27_Time_315_ms_(94.44%)_Space_0B_(100.00%)
33
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
4+
where a.Salary > b.Salary and a.ManagerId is not null

0 commit comments

Comments
 (0)