ORACLE 複製表結構

2021-08-14 11:31:13 字數 443 閱讀 5665

1、複製表結構以及資料

create table d_table_name as select * from s_table_name; ---注意並不會建立索引

2、只複製表結構

create table d_table_name as select * from s_table_name where 1=2;

3、只複製資料

(1)、兩個表結構一樣

insert into d_table_name select * from s_table_name;

(2)、兩個表的結構不一樣,只複製部分列

insert into d_table_name (column1,column2,column3) select column1x,column2x,column3x from s_table_name;

oracle 複製表與複製表結構

一 複製表的語法 create table 表名稱 as 子查詢 例子 複製oracel安裝後的預設資料庫scott中的表emp create table myemp as select from emp 此例是表示表結構和表內容一起複製過來了。二 複製表結構 create table 表名稱 as...

oracle複製表資料,複製表結構

1.不同使用者之間的表資料複製 對於在乙個資料庫上的兩個使用者a和b,假如需要把a下表old的資料複製到b下的new,請使用許可權足夠的使用者登入sqlplus insert into b.new select from a.old 如果需要加條件限制,比如複製當天的a.old資料 insert i...

oracle 複製表與複製表結構

一 複製表的語法 create table 表名稱 as 子查詢 例子 複製oracel安裝後的預設資料庫scott中的表emp create table myemp as select from emp 此例是表示表結構和表內容一起複製過來了。二 複製表結構 create table 表名稱 as...