应该是这样的,
只要你对这个表进行update修改时,就激活了这个触发器。
create trigger trup
on table1
for update
as 
if update(a)
begin 
print‘你修改了a字段’
end