How can i convert 24 hour formatted time into 12 hour formatted time in SQL server 2008?
How can i convert 24 hour formatted time into 12 hour formatted time in
Share
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.
Do you have the current time in a variable/column of type time? If so, it’s easy:
result:
If it’s in a
datetime(2)variable, then you’ll have to strip out the date portion after running the CONVERT. If it’s in a string, then firstCONVERTit totime, then use the above code.