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