Hey folks, I need your help here yet again. I have an educational database of courses that I'm trying to get the following results from a query:
Course Name Session Avalability
Session Time Location
Blah June 9/05 8am Dallas
June 10/05 9am Washington
July 4/05 9am Miami
Blah Blah Aug 4/05 9am Victoria
Aug 10/05 7am Vancouver
Sep 1/05 9am Portland
Now the query I have is as follows:
SELECT DISTINCT Course_Name, Course_Date, Course_Time, Course_City
FROM Tbl_Courses
WHERE (((Tbl_Courses.Course_Date)>=Date()));
This is providing me all the courses that are greater or equal to today's date, but I'd like to be able to group them by the course name, as in the example above.
Is this even possible?
Course Name Session Avalability
Session Time Location
Blah June 9/05 8am Dallas
June 10/05 9am Washington
July 4/05 9am Miami
Blah Blah Aug 4/05 9am Victoria
Aug 10/05 7am Vancouver
Sep 1/05 9am Portland
Now the query I have is as follows:
SELECT DISTINCT Course_Name, Course_Date, Course_Time, Course_City
FROM Tbl_Courses
WHERE (((Tbl_Courses.Course_Date)>=Date()));
This is providing me all the courses that are greater or equal to today's date, but I'd like to be able to group them by the course name, as in the example above.
Is this even possible?