Vous devez mettre à jour la table de destination, pas la table logique. Vous vous joignez à la table logique, cependant, pour déterminer les lignes à mettre à jour :
UPDATE YourTable
SET TheColumnToBeUpdated =
(
SELECT TheValueCol FROM AnotherTable.ValueCol
WHERE AnotherTable.ValudCol1 = INSERTED.ValueCol1
)
FROM YourTable Y
JOIN Inserted I ON Y.Key = I.Key
WHERE I.ValueCol IS NULL