sql 更新触发器 更新指定字段值为某个值时触发

2024年11月19日 10:45
有3个网友回答
网友(1):

您好,这样写:
create trigger trgupdate on tablename
for update
as
declare @c bigint
set @c = 0
if update(c)
begin
select @c= cfrom inserted
if @c= 3
begin
select @c=a from inserted
print @c
end
end

不过触发器出应该不能用print...最好是插到某个表中记录起来.大概就上面这么写.print应该是不可以的.

网友(2):

可以

网友(3):

看看我这个帖子http://zhidao.baidu.com/question/531265521.html?oldq=1,里面介绍很清楚