I\'m using Sqlserver express and I can\'t do before updated trigger. There\'s a other way to do that?
before updated
T-SQL supports only AFTER and INSTEAD OF triggers, it does not feature a BEFORE trigger, as found in some other RDBMSs.
I believe you will want to use an INSTEAD OF trigger.