My query:SELECT CONVERT(VARCHAR(10),eventDate,110) AS EventDate, event AS EventName, COUNT(eventDate) AS Event_CountFROM Baseline2008WHERE eventDate >= '04-01-2008' --Dates greater than April 1 2008GROUP BY EventDate ASC, event
I am trying to get my result set to go from earliest EventDate to lastest. I keep getting 'Incorrect syntax near keyword 'ASC''.When I remove ASC from the last line of code, I get a result set ; the problem is that the list is ordered by the EventName and not the EventDate.