我想要一个列(smalldatetime 数据类型)的默认值,其中时间值为当前时间 + 6 小时并连续更新

I want a default on a column(smalldatetime data type) where the time value is current time + 6hrs and updates continuously

我想要一个列(smalldatetime 数据类型)的默认值,其中每行中的时间值是当前时间 + 6 小时。

我尝试使用 Getdate() 函数,但它没有更新。相反,它只是提供创建行的时间戳。你可以看到我在这个 post 中尝试了脚本。我以为它起作用了,但当我第二天检查 table 时,时间从未改变。

在此先感谢您提供的任何帮助。

将以下字段添加到您的视图中:

DATEADD(hour, 6, GETDATE()) AS Minimum_Departure_Time

既然要看着就变,没理由放在table里。只需将它放在您的视图中,因为视图是每次 运行.

时动态创建的