如何让sql server自动删除已过期的记录
我的数据库中用到了 '过期 '字段(就是超过当前日期时,让该字段的状态该为 "已过期 ")我想让数据库自动进行修改,可不知道怎么用,那为大师愿意帮我,多谢了
------解决方案--------------------create trigger adfadfadfas on yourTable after insert,update?
as
update xx set 过期=1
from yourTable as xx inner join inserted as i on xx.id=i.id
go
------解决方案--------------------对,可以使用JOB 定时查看
------解决方案--------------------在 sqlserver中建立一个作业