vote up 0 vote down star

How can I convert a varchar field of the form YYYYMMDD to a datetime in T-SQL?

Thank you.

flag

2 Answers

vote up 6 vote down check
select convert(datetime, '20081030')
link|flag
I had to specify a format as well. SELECT CONVERT(datetime, '20081030', 102) – Allain Lalonde Oct 30 '08 at 18:01
Maybe that is dependent on your default settings... I guess it's better to specify a format no matter what. – bobwienholt Oct 30 '08 at 18:21
vote up 0 vote down

Use the CONVERT() function?

http://msdn.microsoft.com/en-us/library/ms187928.aspx

link|flag

Your Answer

Get an OpenID
or

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