write an sql query to find the employees who earn more than their managers.
return the result table in any order.
the query result format is the following example.
쿼리
-- leetcode, Employees Earning More Than Their Managers, mysqlSELECT T1.Name AS Employee
FROM Employee AS T1, Employee AS T2
WHERE T1.Salary >= T2.Salary AND T1.ManagerId = T2.Id