181. 超过经理收入的员工
难度系数: 简单
编写一个SQL查询来查找收入比经理高的员工。
以任意顺序返回结果表。
SQL结构
1 | Create table If Not Exists Employee (id int, name varchar(255), salary int, managerId int) |
表:Employee
1 | +-------------+---------+ |
示例 1:
1 | 输入: |
解法:
1 | SELECT a.Name AS Employee |
原题链接:https://leetcode.cn/problems/employees-earning-more-than-their-managers