Oracle 练习 047

1. 题目

从 EMP 表中查询

统计各部门工资低于(包含) 2000 的人数与高于 2000 的人数

2. 实例

点我看答案
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;
© 2021 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""