quiz1_1 해답 1. 같은 업무(job)를 하는 사람의 수가 3명 넘는 경우, 업무와 인원수를 출력하라. SELECT JOB, COUNT(*) FROM EMP GROUP BY JOB HAVING COUNT(*) > 3; 2. 입사년도가 60년대인 사원들의 수와 평균 임금을 구하시오. select count(*), avg(sal) from emp where substr(hiredate,1,2) between '60' and '69'; select count(*), avg(sal) from emp where substr(hiredate,1,1) ='6'; select count(*), avg(sal) from emp where hiredate between '60/01/01' and '69/12/31';..