Being limited on my coding experience I've tried the following:
SELECT DISTINCT id, type, start_date, course_num, catagory, class, location, location_long, time
FROM all_courses
WHERE catagory = 'colname'
and this:
SELECT DISTINCT (class) id, type, start_date, course_num, catagory, class, location, location_long, time
FROM all_courses
WHERE catagory = 'colname'
....but am still getting duplicate classes in my dropdown list. Is there something I'm missing or wrong placement?