oracle 복제 표 구조 와 복제 표 데이터 문장 공유

667 단어 Oacle표 구조
1.표 구조 와 데 이 터 를 복사 합 니 다.

create table table_name_new as select * from table_name_old
2.표 구조 만 복사 합 니 다.

create table table_name_new as select * from table_name_old where 1=2;
또는:

create table table_name_new like table_name_old
3.표 데이터 만 복사 합 니 다.
만약 에 두 개의 표 구조 가 같다 면

insert into table_name_new select * from table_name_old
두 개의 표 구조 가 다 르 면

insert into table_name_new(column1,column2...) select column1,column2... from table_name_old

좋은 웹페이지 즐겨찾기