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

Oracle快速复制表

时间:2018-12-27 13:16:46      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:select   trunc   span   table   HERE   记录   from   ble   oracle   

清空表 

oracle --truncate truncate table gh_qytc_ls; //从一个表插入到另外一个表 insert into gh_qytc_ls SELECT * FROM gh_qytc tc; 快速copy一张表数据到另外一张表 1、创建一个临时表,字段和要用的表相同 create table gh_qyghgx_temp as select * from gh_qyghgx where qybm=‘F227‘; 2、查询临时表是否创建成功 select * from gh_qyghgx_temp; 3、删除临时表的那条记录 truncate table gh_qyghgx_temp; 4、把要备份的表的数据放入临时表 insert into gh_qyghgx_temp select * from gh_qyghgx 5、查询是否插入成功 select count(*) from gh_qyghgx_temp;

 

Oracle快速复制表

标签:select   trunc   span   table   HERE   记录   from   ble   oracle   

原文地址:https://www.cnblogs.com/yongguang1990/p/10184147.html

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