MySQL具有一个称为STR_TO_DATE的函数,该函数将字符串转换为date。
SQL Server中是否有类似的功能?
如果您需要解析特定格式,请使用CONVERT(datetime, @mystring, @format)。将此用作参考:http : //www.sqlusa.com/bestpractices/datetimeconversion/
CONVERT(datetime, @mystring, @format)