创建oracle表备份
2019-08-20 本文已影响0人
打瞌睡的蚂蚁
create table USER_temp_yyyy_MM_dd as select * from USER;
只取表结构,不取数据
create table USER_temp as select * from USER where1=0;
create table USER_temp_yyyy_MM_dd as select * from USER;
只取表结构,不取数据
create table USER_temp as select * from USER where1=0;