由于水平原因,博客大部分内容摘抄于网络,如有错误或者侵权请指出,本人将尽快修改

摘要: 570. 至少有5名直接下属的经理 - 力扣(LeetCode) select Employee.Name as Name from ( select ManagerId as Id from Employee group by ManagerId having count(Id) >= 5 ) a 阅读全文
posted @ 2024-07-03 23:36 小纸条 阅读(20) 评论(0) 推荐(0)