I need to get my dates to be into the following format:
12/3/2011 for example as opposed to 12/03/2011
the SQL I currently use on a result set is:
CONVERT(VARCHAR(10), Created, 105) as Created
How can I do this, thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CONVERT(CHAR(10), CONVERT(DATETIME, Created), 103)