1. 程式人生 > >資料庫資料更新,不同表,不同資料庫的更新方式

資料庫資料更新,不同表,不同資料庫的更新方式

1:同一個資料庫更新: 表A的資料column1 更新表B 的資料 column1 的方法
update 表B
set column1 =a.column1
from 表A a,表 b
where a.關聯=b.關聯

2:不同資料庫之間更新: 資料庫A,中的表A的column1  更新 資料庫B,中的表B的column1 
update 資料庫B..表B
set b.column1  =a.column1 
from water..WQ_STINFO_B a,waterSJSGNQ..WQ_STINFO_B b
where a.column1  =b.column1