选择在经理手下工作的经理员工



我试图建立一个查询来选择所有员工,谁是经理,但也在经理下工作。

例如下表

<表类> id 名称 manager_id tbody><<tr>1新鲜22团队领导33经理空

我只使用exists和过滤:

select e.*
from emps e
where e.manager_id is not null and
exists (select 1
from e e2
where e2.manager_id = e.id
);

相关内容

  • 没有找到相关文章

最新更新