Oracle 练习

1. 题目

列出至少有一个员工的所有部门

2. 实例

点我看答案
select *
from dept d
where d.deptno in (
    select e.deptno
    from emp e
    group by e.deptno
        having  count(e.ename) > 0
);
© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""