gtxyzz

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

gtxyzz web技术 2023-02-27 715浏览 0

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

继续浏览有关 数据库技术文章/教程 的文章
发表评论