Anda perlu memperbarui tabel tujuan, bukan tabel logis. Anda bergabung dengan tabel logis, untuk mengetahui baris mana yang akan diperbarui:
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