1. 程式人生 > >在Oracle資料庫中複製表結構和表資料

在Oracle資料庫中複製表結構和表資料

1. 複製表結構及其資料:

create table new_table as select * from old_table

2. 只複製表結構:

create table new_tableas select * from old_tablewhere 1=2;

或者:

create table new_table like old_table

3. 只複製表資料:

如果兩個表結構一樣:

insert into new_table select * from old_table

如果兩個表結構不一樣:

insert into new_table (column1,column2...) select column1,column2... from old_table

pasting