Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 asp.net 中的指定日期和时间将 sql 中表的字段的值设置为 TRUE。我怎样才能做到这一点?有没有办法在sql中使用触发器来做到这一点?
假设您使用的是 MS SQL Server,触发器通常用于根据Insert, Update, Delete命令执行操作。
Insert, Update, Delete
如果您拥有的 asp.net 代码正在运行,那么您可以在设定的时间让它向数据库发送更新语句。
如果这就是 asp.net 程序正在做的所有事情,那么也许看看调度一个SQL 作业