Write a solution to find the employees who earn more than their managers.
Return the result table in any order.
The result format is in the following example.
SELECT a.name as Employee FROM Employee as a
WHERE a.salary > (SELECT b.salary FROM Employee as b WHERE b.id = a.managerId)