算出部门 30 中得到最多奖金的员工姓名
select ename, comm, deptno from emp where comm = ( select max(comm) from emp where deptno = 30 ) and deptno = 30;