标签: sql datetime
为什么
select cast('''1900-01-01''' as datetime)
在SQL Server 2005中失败了吗?
显示错误消息:
从字符串转换日期时转换失败。
感谢。
答案 0 :(得分:0)
您的参数无效。它应该是
cast('1900-01-01' as datetime)
有关详细信息,请参阅此处:CAST and CONVERT和How to convert from string to datetime?