I would like to know how can I retrieve the older value after updated. I am using this in After update trigger and the database being used is MSSQL.
2 Answers
You need to get data from DELETED table
SELECT ColumnName from DELETED
1 Comment
David Browne - Microsoft
"Use the inserted and deleted Tables": learn.microsoft.com/en-us/sql/relational-databases/triggers/…