create trigger 触发器名称
on 表名(将触发器创建到那张表中)
for update
as
if update(判断更新字段)
begin
update (要更新的表名) set 字段=inserted.字段 from 要更新的表名 ,inserted
end
转载于:https://www.cnblogs.com/bilaisheng/p/10211055.html
相关资源:JAVA上百实例源码以及开源项目
转载请注明原文地址: https://mac.8miu.com/read-1579.html