代码改变世界

Oracle 复制表

2017-02-06 17:21  甘雨路  阅读(194)  评论(0编辑  收藏  举报
-- 复制表
create table newtable as select * from t_stu;
select * from newtable;

-- 复制表结构,但不复制数据
create table newt as select * from t_stu where 1=2;
select * from newt;