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

后端 未结 9 563
眼角桃花
眼角桃花 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 10:43

    Remember that when you use an instead trigger, it will not commit the insert unless you specifically tell it to in the trigger. Instead of really means do this instead of what you normally do, so none of the normal insert actions would happen.

提交回复
热议问题