Is it possible to change the value of an inserted item from within an insert trigger?
Such as
inserted.[field] = 1
There are several reasons, but one of them is to replace a value with a default if the value doesnt meet a FK Constraint so as to allow the insert to happen.
Such as
inserted.[field] = 1
There are several reasons, but one of them is to replace a value with a default if the value doesnt meet a FK Constraint so as to allow the insert to happen.