码迷,mamicode.com
首页 > 数据库 > 详细

oracle复制表结构及数据

时间:2020-05-14 19:33:05      阅读:66      评论:0      收藏:0      [点我收藏+]

标签: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复制表结构及数据

标签:oracle复制表   name   where   creat   table   复制表   数据   oracle   ike   

原文地址:https://www.cnblogs.com/slsddy/p/12890629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!