本文主要是介绍1978. 上级经理已离职的公司员工,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1978. 上级经理已离职的公司员工
题目链接:1978. 上级经理已离职的公司员工
代码如下:
# Write your MySQL query statement below
select employee_id
from Employees
where salary<30000
and manager_id is not null
and manager_id not in (select employee_id from Employees)
order by employee_id
这篇关于1978. 上级经理已离职的公司员工的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!