我需要从另一个表更新一些数据..
我想简单地将table1中col1的数据带到table2中的col1,这些行位于相同的位置,所以实际上不需要进行任何id-comparing ..
我怎样才能做到这一点?
-----------------------------------------
Db1.Table1 (Take yearModel from this table to update Table3)
-----------------------------------------
imgid | int | PK |
yearModel | int |
-----------------------------------------
-----------------------------------------
Db2.Table2 (Go by this table to update Table3)
-----------------------------------------
imgid | int | PK |
uploadId | int | FK (With table3.uploadId) |
------------------------------------------
------------------------------------------
Db2.Table3 (Update this table with the yearModel from table1)
-------------------------------------------
uploadId | int | PK |
uploadYearModel | int |
抱歉,我的数据库图表“thingy”由于某种奇怪的原因而崩溃了.. :( 我希望你能理解这个想法
我还应该提到 Table1 位于另一个数据库中..我不确定这是否重要..但好吧.. :)
提前致谢!