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

数据库   发布日期:2025年05月02日   浏览次数:342

创建一个表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

以上就是Oracle中复制一张表的结构,用sql语句复制一张表结构的详细内容,更多关于Oracle中复制一张表的结构,用sql语句复制一张表结构的资料请关注九品源码其它相关文章!