0
点赞
收藏
分享

微信扫一扫

SQL-leetcode 181

最后的执着 2023-01-17 阅读 117


 

SQL-leetcode 181_MySQL

# Write your MySQL query statement below
select e1.Name as Employee from Employee e1 where e1.Salary >
(select e2.Salary from Employee e2 where Id = e1.ManagerId)

 

举报

相关推荐

0 条评论