SQL Server 2005中的日期时间

时间:2012-05-11 03:53:08

标签: sql datetime

为什么

select cast('''1900-01-01''' as datetime)

在SQL Server 2005中失败了吗?

显示错误消息:

  

从字符串转换日期时转换失败。

感谢。

1 个答案:

答案 0 :(得分:0)

您的参数无效。它应该是

cast('1900-01-01' as datetime)

有关详细信息,请参阅此处:CAST and CONVERTHow to convert from string to datetime?