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

原文地址:https://www.cnblogs.com/derek1208/p/3539236.html