I would like to know how I can relate two tables to different databases so that every time the value in the table bank1.dbo.table id1 will be changed also in bank2.dbo.table id1, modifying according to the row (id) which is being modified
The issue is that the tables are thus
table1
id - column2 - column3 - point
1 --- 0 ---------- 0 -------- 10
2 --- 0 ---------- 0 -------- 25
table2
id - column2 - column3 - column4 - bonus
1 ------ 0 -------- 0 ---------- 0 ---------?
2 ------ 0 -------- 0 ---------- 0 ---------?
I wanted this point to go to the bonus whenever it was changed, according to the line there (id), so in case that changed there 25 on line 2 will change here also on line 2 of the bonus column in table 2 It's kind of confusing, thanks for responding.