jconway
Programmer
- Dec 14, 2005
- 50
I have a date in ISO 112 format. This is YYYYMMDD. I want to convert it to the normal US mm/dd/yyyy format. I know there's a quick way, but just can't pin it down. Please help. Thanks, Jen
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Declare @Date DateTime
Set @Date = '20080111'
Select Convert(VarChar(10), @Date, [!]101[/!])
Select Convert(VarChar(10), Convert(DateTime, '20080111'), 101)