标签: sybase sybase-ase
我有字符串,例如。 “2008-01-01 11:09:11”。
如何将其转换为日期时间?
答案 0 :(得分:1)
如果您在SELECT语句或存储过程调用中将其用作文字字符串,则转换是自动的。
SELECT
如果你在变量中得到它,convert(datetime, @stringDateTime)应该有效。
convert(datetime, @stringDateTime)
答案 1 :(得分:0)
timestamp数据类型定义为varbinary(8) null,它与时间或日期有任何关系。
varbinary(8) null
您无法在sybase中将时间戳转换为日期时间。