Oracle 练习 038

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
);
© 2021 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""