Oracle 练习

1. 题目

算出部门 30 中得到最多奖金的员工姓名

2. 实例

点我看答案
select ename, comm, deptno
from emp
where comm = (
    select max(comm)
    from emp
    where deptno = 30
) and deptno = 30;
© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""