How do you ORDER BY DATES descendingly?Let's say i have a column named log_Date and the format is 12/03/04 1:04 PMIs there an easier way in ordering that kind of date format? If so, what is the code for that?If there's none, then I'm thinking of substringing the month day and year.First you substring the year first because you need to check the year first, then followed by the month then day.I tried ORDER BY LEFT(6, 8, log_Date) DESC, LEFT(0, 2, log_Date) DESC, LEFT(3, 5, log_Date) DESC
but that code doesnt work.Please help! thanks!