I have this date format: 2011-09-28 18:01:00 (in varchar), and I want to convert it to datetime changing to this format 28-09-2011 18:01:00. How can I do it? Solution SELECT CONVERT(Datetime, '2011-09-28 18:01:00', 120) -- to convert it to Datetime … Continue reading
The post Sql Server Convert String to Date Format appeared first on Solved.