This seems stupid but, I simply need a list of dates to be ordered with the most recent date at top. Using order by DESC doesn\'t seem to be working the way I w
order by DESC
You have the field in a string, so you'll need to convert it to datetime
order by CONVERT(datetime, EventDate ) desc