oracle-复制表结构和表数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle-复制表结构和表数据相关的知识,希望对你有一定的参考价值。
1.复制表结构和表数据
create table table_new as select * from table_old
2.复制表结构
create table table_new as select * from table_old where 1<>1
3.复制表的指定字段
create table table_new as select o.column1,o.column2 from table_old o where 1<>1
4.复制表的指定字段的数据
create table table_new as select o.column1,o.column2 from table_old
简单描述,作为新手入门,写下来留以后技术回顾之用~
以上是关于oracle-复制表结构和表数据的主要内容,如果未能解决你的问题,请参考以下文章