我有一个这样的触发器:
CREATE TRIGGER trCreatedDate ON [LasMTest]
FOR INSERT
AS
UPDATE [LasMTest] SET [LasMTest].Created=getdate()
FROM [LasMTest] INNER JOIN Inserted ON [LasMTest].[ID]= Inserted.[ID]
GO
将 8 小时添加到当前日期时间的语法是什么[LasMTest].Created=getdate()
?