There is a field which is date type in a table. The format of this field is mm/dd/yy. Is there any way to convert it to dd-Month name-yy?
Best Regards,
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.
Without any hassle, you can use CONVERT to get “dd MONTHNAME yyyy” format:
e.g. “25 Jan 2010”
If you want your exact format, you may need a bit of manual fiddling around like:
e.g. “25-Jan-10”
Update:
In fact, a shorter way to achieving this is:
e.g. “25-Jan-10”