💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 2、哪些人的薪水在部门的平均薪水之上 ![](https://img.kancloud.cn/07/5b/075b0d583240cdb461bc241ab5273c20_266x203.png) 思路 1.获取部门的平均薪水 select deptno ,avg(sal) avgSal from emp group by deptno 2.使用步骤1的查询结果,为临时表temptable 进行多表查询 并使用员工的deptno等于temptable表中的deptno 和 sal 大于 temptable表中的avgsal 同时消除笛卡尔积 select * from emp e inner join temptable tt on e.deptno=tt.deptno and e.sal>tt.avgSal 3.使用步骤1的语句替换步骤2中的temptable select * from emp e inner join (select deptno ,avg(sal) avgSal from emp group by deptno) tt on e.deptno=tt.deptno and e.sal>tt.avgSal