https://leetcode-cn.com/problems/employees-earning-more-than-their-managers/
select x.Name as 'Employee' from Employee as x,Employee as y where x.ManagerId=y.id and x.Salary>y.Salary;