Oracle 练习

1. 题目

找出部门 10 中的 经理 和部门 20 中的 普通员工

2. 实例

点我看答案
select *
from emp e
where (e.deptno = 10 and e.job = '经理')
    or (e.deptno = 20 and e.job = '普通员工');
© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""