How can I do a BEFORE UPDATED trigger with sql server?

后端 未结 9 581
眼角桃花
眼角桃花 2020-11-28 10:18

I\'m using Sqlserver express and I can\'t do before updated trigger. There\'s a other way to do that?

9条回答
  •  误落风尘
    2020-11-28 11:05

    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.

提交回复
热议问题