原文: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