创建表时,我收到此错误消息,其中一列的数据类型为日期
Msg 2715,Level 16,State 7,Line 2
列,参数或变量#11:找不到数据类型日期。
我还尝试更改兼容级别
alter database test
set compatibility_level = 90
go
并收到错误消息
Msg 102, Level 15, State 1, Line 2
Incorrect syntax near '90'.
答案 0 :(得分:11)
SQL Server 2005仅支持datetime(和smalldatetime)数据类型。
请参阅http://msdn.microsoft.com/en-us/library/ms187752%28v=sql.90%29.aspx