原始需求如下: 有一个表T1 create table t1 (id int not null primary key ,v1 ) ) ,'aaa'); ,'bbb'); 有一个表TS,用于记录T1中 每条记录的更新时间(触发器实现,此处略过) create table ts (id int not null primary key ,updatetime datetime )insert into ts values(1,getdate());insert into ts values(2,g…