create trigger 触发器名称
on 表名(将触发器创建到那张表中)
for update
as
if update(判断更新字段)
begin
update (要更新的表名) set 字段=inserted.字段 from 要更新的表名 ,inserted 
end

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-22
  • 2021-06-21
  • 2022-12-23
  • 2021-10-16
  • 2021-11-09
猜你喜欢
  • 2021-08-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案