그룹핑된 결과에 그룹별 합계 정보.
select nvl(job, '합계') AS JOB, sum(sal) from emp group by ROLLUP(JOB);
그룹핑된 컬럼의 모든 가능한 조합에 대한 합계 정보
select DEPTNO, JOB, SUM(SAL) from emp group by CUBE(DEPTNO, JOB) ORDER BY DEPTNO, JOB;