[SQL/Oracle] 테이블 복사하기
안녕하세요 스탭코딩 게시글 작성자 페이퍼클립입니다. 테이블 복사를 위한 쿼리를 소개합니다. [STEP1 복사를 위한 생성하기] 1234567891011121314151617CREAT TABLE table_copy(col1 varchar2(20),col2 number,col3 date default sysdate); INSERT INTO table_copy VALUES ('test1', 1, '20170505'); INSERT INTO table_copy VALUES ('test2', 5, '20140201'); INSERT INTO table_copy VALUES ('test3', 3, '20110808'); INSERT INTO table_copy VALUES ('test4', 2, '20170606'..
2017. 5. 16.