原文:oracle把一个表的数据复制到另一个表中

http: blog.csdn.net my name nb article details . 新增一个表,通过另一个表的结构和数据 create table XTHAME.tab as select from DSKNOW.COMBDVERSION . 如果表存在: insert into tab select from tab .同一个表中,将A字段的指赋给B字段: update table ...

2018-03-05 21:11 0 4045 推荐指数:

查看详情

Oracle一个数据复制到另一个

Oracle一个数据复制到另一个1、新增一个,通过另一个的结构和数据: create table tab2 as select * from tab1; 2、如果存在: insert into tab2 select * from tab1; 3、同一个,将A字段的值赋 ...

Mon Dec 09 22:57:00 CST 2019 0 2404
 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM