Trigger : after update insert into second table
I have two tables in SQL Server firsttable and secondtable.
I would like to make an trigger in firsttable that after update some column to insert some values (from firsttable) into secondtable.
I have tried to read updated row id with @@identity, but does not works.
Please, help.
|