Just one correction: the trigger is assigned to the [ProductVariant] table. So everytime the [Inventory] column is updated (ie normally, when an order is processed) it will check to see if the update brings the [Inventory] below 20. If it does then it will change the [Product].[IsCallToOrder] column to 1.
I'm going to slightly amend the SQL to:
Code:
CREATE TRIGGER tr_u_ProductVariant
ON ProductVariant
AFTER UPDATE
AS
BEGIN
SET NOCOUNT ON;
IF UPDATE(Inventory)
BEGIN
UPDATE Product
SET IsCallToOrder = 1
WHERE ProductID IN (SELECT ProductID FROM INSERTED WHERE Inventory < 20)
END
END
Note the use of IN, because the first SQL I wrote would relyon only one record being updated, and would fail if you updated lots of [Inventory] fields at once.