更新时间触发器
多个SQL数据库同步数据汇总到一个数据库上,想采用更新时间字段datetime代替时间戳timestamp。
如何写个触发器 为每个表的增改更新时间字段,最后查询大于上一次最大更新时间的诗句。
------解决方案--------------------你两个触发器可以和起来写:
create Trigger Insert_UpdateNop_CustomerTime on Nop_Customer
for Insert, Update
as
update Nop_Customer set [updateTime]=GETDATE() from inserted
where Nop_Customer.CustomerID=inserted.CustomerID
这点没有压力的。放心好了