从 EMP 表中查询
统计各部门工资低于(包含) 2000 的人数与高于 2000 的人数
select e.deptno, count(case when e.sal <= 2000 then e.sal else null end) "<=2000", count(case when e.sal > 2000 then e.sal else null end) ">2000" from emp e group by e.deptno;