서브쿼리와 함수를 조합하여 풀기 select*from employee; select * from department; -- 1. 사원명 'e3'가 속한 부서명을 조회하시오 -- 부서명을 알기위해서는 e3의 부서번호가 필요함 -- select 부서번호 from 사원테이블 where 사원명='e3'; -- select 부서명 from 부서테이블 where 부서번호 = (e3이라는 사원명의 부서번호 ) select dno from employee where ename='e3'; select dname from department where dno=(select dno from employee where ename='e3') ; select * from employee; -- 2. 평균 월급보다 더 많은 월급을..