CREATE TRIGGER 触发器名
ON 评价表
FOR UPDATE
AS
insert into 日志表 (编号,原评价内容,改变时间) select 编号,评价内容,getdate() from inserted
update 日志表 set 新评价内容=(select 评价内容 from 评价表 where 编号=(select 编号from inserted))
GO
评价表:a 主键id 评价内容 content,日志表:b 日志编号id 改变时间now() 获得当前时间
老评价内容 oldcontent 和新评价内容newcontent
create trigger a_update after update on a
for each row
begin
insert into b values(old.id,now(),old.content,new.content);
end