MySQL has a function called STR_TO_DATE, that converts a string to date.
Is there a similar function in SQL Server?
If you need to parse a particular format, use CONVERT(datetime, @mystring, @format)
. Use this as a reference: http://www.sqlusa.com/bestpractices/datetimeconversion/