tSQL> 在emp表中,查询工资高于本部门平均工资的员工姓名、工资和部门号码:select ename, sal, deptno from emp e where sal > (select avg(sal) from emp where e.deptno = deptno); tSQL> 使用联接查询方式,在emp表中选择工资高于部门平均工资的员工姓名、工资和部门号码:select e1.ename, e1.sal, e1.deptno from emp e1, (select avg(sal) avg_sal, deptno from emp group by deptno) e2 where e1.sal > e2.avg_sal and e1.deptno = e2.deptno; 两种SQL查询达到相同效果,第一种将平均工资查询放置在WHERE子句内部,第二种则将其置于FROM子句内部。