📅  最后修改于: 2022-03-11 15:05:35.980000             🧑  作者: Mango
代码示例1
create trigger trgFee on PlanType after update as if update (Fee)
begin
update PlanDetails set Fee = getdate() from PlanDetails
end