MySQL has a function called STR_TO_DATE, that converts a string to date.

Question:

Is there a similar function in SQL Server?

link|improve this question

1  
possible duplicate of Sql Server string to date conversion – OMG Ponies Aug 19 '10 at 19:44
feedback

4 Answers

up vote 5 down vote accepted

If you need to parse a particular format, use CONVERT(datetime, @mystring, @format). Use this as a reference: http://www.sqlusa.com/bestpractices/datetimeconversion/

link|improve this answer
feedback

Use CAST.

declare @MyString varchar(10)
declare @MyDate datetime

set @MyString = '2010-08-19'
set @MyDate = cast(@MyString as datetime)
select @MyDate
link|improve this answer
feedback

What if the string is 7/7/2010?

Then use CONVERT with either 101 (mm/dd/yy) or 103 (dd/mm/yy) depending on what you want:

SELECT CONVERT(DATE, '7/7/2010', 103)

Result:

2010-07-07
link|improve this answer
feedback
CAST(<string> AS DATETIME)
link|improve this answer
can u give an example of how to use it? what is the string is 7/7/2010 as opposed to 07/07/10 ?? – Артём Царионов Aug 19 '10 at 19:44
1  
CAST/CONVERT works if you have a supported format - STR_TO_DATE supports custom formats. – OMG Ponies Aug 19 '10 at 19:45
STR_TO_DATE is mysql, not sqlserver – Stealth Rabbi Apr 25 at 16:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.