Hello,I am having trouble creating a statement that can group my events by date and order the time of the events on that date. Basically, I have a conference that over a couple of days. With in these days there are several events at given times. I would like to create a query that can get all events for each day of the conference. Here is what I have so far:SELECT title, starttime, endtime, date, descriptionFROM conference_eventswhere conferenceID = 1 and active = 1group by dateorder by startime
Both date and starttime are "datetime" fields. Thanks in advanced for helping