I am trying to run a query that shows all of our professors who are teaching in the current Fall or upcoming Spring semester only. I have a table that has each course listed, the semester, and the person teaching it. I am trying to pull a query using this table. However, many professors teach more than one course, not only within each semester but also across semester: e.g. John Smith teaches Photography I and Photoshop in Fall, then Photography I again in Spring.
When I try to run this query, John Smith will therefore appear three times in my query, once for each class. I have tried running a totals query with "First" selected under Faculty Last Name, under Semester, and under both, but this doesn't work ("First" selected under Last Name will knock out quite a few professors entirely!). I have also tried going into SQL mode and changing SELECT to SELECT DISTINCT but this doesn't work either.
I'd prefer a solution that does not require SQL mode.
Thank you!