HTMLify
Q181_Employees_Earning_More_Than_Their_Managers.sql
Views: 511 | Author: djdj
1 2 | SELECT e.name AS Employee FROM Employee e, Employee a WHERE e.managerID = a.id AND e.salary > a.salary; |
1 2 | SELECT e.name AS Employee FROM Employee e, Employee a WHERE e.managerID = a.id AND e.salary > a.salary; |