생성
create table 테이블명(
no number constraint 테이블명_pk_no primary key,
name varchar2(40)
);

생성과 동시에 데이터 복사
create table copy_tb as select * from ori_tb;

기존 테이블에 데이터만 가져오기
insert into copy_tb select * from ori_tb;

+ Recent posts