Okay, I have a trigger on my people table that looks like this:
CREATE TRIGGER insertTransactionTurned18
ON dbo.people
FOR UPDATE
AS
DECLARE @personid int,@oldage int,@newage int
SELECT @oldage = age
FROM deleted WHERE active=1
SELECT @newage = age,@personid...