INSERT触发器更新值

INSERT触发器更新值

本文介绍了SQL INSERT触发器更新值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 嗨朋友们, 我试图在插入时更新表中的值.. 我正在使用此触发器。 .. 创建 TRIGGER add_auth_code ON dbo.aspnet_Users AFTER INSERT AS BEGIN - 添加SET NOCOUNT ON以防止额外的结果集 - 干扰SELECT语句。 SET NOCOUNT ON ; authcode = 54464966464446; - 在此处插入触发器语句 END 我想将authcode设置为当前插入列,,,如何我可以更新吗,,,请有人帮助我.... 解决方案 Hi friends,I am trying to update a value in a table while inserting..I am using this trigger...CREATE TRIGGER add_auth_code ON dbo.aspnet_Users AFTER INSERTASBEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; authcode = "54464966464446"; -- Insert statements for trigger hereENDI want to set an authcode to the currently inserting column,,, How can I update it,,, Please somebody help me.... 解决方案 这篇关于SQL INSERT触发器更新值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-18 22:04