删除超过30日的记录

where datediff(day,@datetime,getdate())>30

@datetime为存储过程的传入参数,也可以为数据库字段名称,但字段名称必须为datetime类型

你可能感兴趣的:(数据库,存储)