标签:oracle复制表 name where creat table 复制表 数据 oracle ike
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复制表 name where creat table 复制表 数据 oracle ike
原文地址:https://www.cnblogs.com/slsddy/p/12890629.html