[Oracle/Sql] 통계테이블에 유용하게 쓰이는 pivot,rollup
front 작업만 해서 쿼리 만질일이 없다가 오랜만에 다시 쿼리를 해본다. 통계데이터를 만드는 일인데, 확실히 쿼리로 처리하면 java로 처리하는것 보다 편하다. 123456789with data as (select '2016-06-11' dt, 'typeA' type, 'itemA' item, '10000' amount from dual union allselect '2016-06-11' dt, 'typeA' type, 'itemB' item, '20000' amount from dual union allselect '2016-06-11' dt, 'typeB' type, 'itemB' item, '20000' amount from dual union allselect '2016-06-11' dt, 't..