现在的位置: 首页 > 综合 > 正文

Oracle中复制表结构和表数据

2014年05月06日 ⁄ 综合 ⁄ 共 263字 ⁄ 字号 评论关闭

一、复制表结构及其数据

create table new_table as (select * from old_table);

二、只复制表结构

create table new_table as (select * from old_table where 1=2);

三、只复制表数据

如果两个表结构一样:

insert into new_table select * from old_table;

如果两个表结构不一样:

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

抱歉!评论已关闭.