[ Oracle ] Oracle CTAS 기법으로 테이블 복사하기
·
Archive/Develop
CTAS 란? : copy table as 를 의미한다. create table testemp as select * from emp; select * from testemp; desc user_constraints; 첫번째 sql 문을 실행하면 테이블이 복사된다. 이 상태로 select 문을 실행시킨다. emp 테이블이 복사된 것을 알 수 있다.