This is my first experience with triggers so any help would be great. I am trying to figure out how to write a trigger that will update a column in Table(B) based on changes to a column in Table(A). I thought I should place the trigger on Table(A) and that the trigger should be something like this....(which I feel is totally wrong!)
IF Update(AColumn)
Update TableB
Set Bcolumn = '10'
Where AColumn = '1'
Please Help.
IF Update(AColumn)
Update TableB
Set Bcolumn = '10'
Where AColumn = '1'
Please Help.