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.
我无法为smalldatetimeSQL Server 2008 中的列设置 5 分钟的默认值。感谢任何帮助
smalldatetime
谢谢,绿
你可以这样做:
CREATE TABLE #t(col TIME DEFAULT '00:05') INSERT #t VALUES (DEFAULT) SELECT * FROM #t
正如蒂姆建议的那样,更好的办法是使用TIME数据类型。
TIME