MySQL has a function called STR_TO_DATE, that converts a string to date.
Question:
Is there a similar function in SQL Server?
|
MySQL has a function called STR_TO_DATE, that converts a string to date. Question:Is there a similar function in SQL Server?
| |||||
feedback
|
|
If you need to parse a particular format, use | |||
|
feedback
|
|
Use CAST.
| |||
|
feedback
|
Then use CONVERT with either 101 (mm/dd/yy) or 103 (dd/mm/yy) depending on what you want:
Result:
| ||||
|
feedback
|
| |||||||||
feedback
|