Study/Programming

[Oracle] 임시 테이블 생성 (Temporary Table)

빨간당무 2009. 11. 30. 19:07

임시테이블 생성 방법

크게 두가지 방법이 존재함

create global temporary table 테이블명
(    컬럼내용들...    ) on commit delete rows;        -- commit 시 데이터가 사라짐

create global temporary table 테이블명
(    컬럼내용들...    ) on commit preserve rows;    -- session 종료시 데이터 사라짐