--student 에서 4학년 중에서 키가 170보다 작거나 또는 몸무게가 60보다 큰 학생의 이름,학년,키,몸무게 출력 select name, grade, height, weight from student where grade='4' and (height60); --count(*)는 null포함 select count(*), count(hpage) from professor; --sum(합계), avg(나누기) select count(bonus), sum(bonus), avg(bonus) from professor; --max, min select max(sal), min(sal) from emp; select max(hiredate), min(hiredate) from emp;