181. Employees Earning More Than Their Managers

# Write your MySQL query statement below
select E.name Employee 
from Employee as E,Employee as M
where E.ManagerId=M.Id 
and E.Salary>M.Salary 
相关文章
相关标签/搜索