mssql convert string to datetime code example
Example 1: cast string to datetime mysql
SELECT STR_TO_DATE('2017-03-13T14:39:01.123','%Y-%m-%dT%H:%i:%s.%f');
Example 2: sql server convert string to date
Cast( '2011-07-07' as date ) as convertedDate