概述
使用游标即可解决
create trigger testTrigger
on TableName
for update
as
begin
declare youbiao CURSOR /*声明游标*/
for
select ID1,name from inserted
open youbiao
declare @ID1 int,@name varchar(20)
fetch next from youbiao into @ID1,@name/*读取第一条数据*/
while(@@fetch_status=0) /*表示成功执行fetch语句*/
begin
--做你要做的事情
fetch next from youbiao into @ID1,@name /*游标下移*/
end
close youbiao
deallocate youbiao
end
最后
以上就是标致台灯为你收集整理的sql一条update指令只会触发一次触发器的解决方案的全部内容,希望文章能够帮你解决sql一条update指令只会触发一次触发器的解决方案所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复