# Write your MySQL query statement below
select e1.Name as Employee from Employee e1 where e1.Salary >
(select e2.Salary from Employee e2 where Id = e1.ManagerId)
SQL-leetcode 181
阅读 117
2023-01-17
# Write your MySQL query statement below
select e1.Name as Employee from Employee e1 where e1.Salary >
(select e2.Salary from Employee e2 where Id = e1.ManagerId)
相关推荐
精彩评论(0)