企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 8、取得比普通员工(员工代码没有在mgr字段上出现的)的最高薪水还要高的领导人姓名 ![](https://img.kancloud.cn/99/97/9997fafbc9194d2f624f8af7173b3e73_311x183.png) 思路 1.获取所有的领导的编号 select mgr from emp where mgr is not null group by mgr 2.根据步骤1的查询结果,获取普通员工的最高工资,empno 不在步骤的查询结果里的 select max(sal) from emp where empno not in(select mgr from emp where mgr is not null group by mgr ) 3.使用步骤1的查询结果作为条件获取 empno在这个结果中的所有记录以及sal要大于步骤2的查询结果的所有数据 select ename from emp where sal>(select max(sal) from emp where empno not in(select mgr from emp where mgr is not null group by mgr ))