您好,这样写:
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应该是不可以的.
可以
看看我这个帖子http://zhidao.baidu.com/question/531265521.html?oldq=1,里面介绍很清楚