标签: sql-server-2008
我无法将默认值5分钟设置为SQL Server 2008中的smalldatetime列。 任何帮助表示赞赏
smalldatetime
感谢, 绿色
答案 0 :(得分:0)
你可以这样做:
CREATE TABLE #t(col TIME DEFAULT '00:05') INSERT #t VALUES (DEFAULT) SELECT * FROM #t
Tim建议更好的方法是使用TIME数据类型。
TIME