时间:2021-07-01 10:21:17 帮助过:18人阅读
1. 复制表结构及其数据:
create table table_name_new as select * from table_name_old
2. 只复制表结构:
create table table_name_new as select * from table_name_old where 1=2;
或者:
create table table_name_new like table_name_old
oracle复制表结构及数据
标签:oracle复制表 name where creat table 复制表 数据 oracle ike