December 2013
Intermediate to advanced
1872 pages
153h 31m
English
In most trigger situations, you need to know what changes were made as part of the data modification. You can find this information in the inserted and deleted tables. For the AFTER trigger, these temporary memory-resident tables contain the rows modified by the statement. With the INSTEAD OF trigger, the inserted and deleted tables are actually temporary tables created on-the-fly.
The inserted and deleted tables have identical column structures and names as the tables that were modified. Consider running the following statement against the AdventureWorks2012 database:
UPDATE [Production].[Product] SET [ListPrice] = '10' WHERE ProductSubcategoryID = 23
When this statement is executed, ...