Oracle中复制一张表的结构,用sql语句复制一张表结构

创建一个表new_table和old_table表结构一样(只复制表结构,没有old_table的记录)

create table new_table as select * from old_table  where 1=0;

 

创建一个表new_table和old_table表结构一样(复制表结构和表的数据,有old_table的记录)

create table new_table as select * from old_table;

 

复制一个表到另一个表

insert into new_table select * from old_table;

 

创建视图,删除视图

create or replace view **_view as select * from **table;
drop view **_view;

 

创建临时表

create  global  temporary  table  tablename  on  commit  preserve  rows  as  select  *  from  others_table

posted @ 2014-02-07 10:32  Derek1208  阅读(1262)  评论(0编辑  收藏  举报