I am not an expert with access and appreciate any advice on the following query. I'm tring to select the first occurance of a faculty member identified teaching an online section. So far, I have this information and access does not like. Thank you,
SELECT DISTINCT min[term], [emplid], [last_name], [first_name],
FROM tbl_OIS
WHERE MID(class section, 1, 1)='O';
Again thank you!
SELECT DISTINCT min[term], [emplid], [last_name], [first_name],
FROM tbl_OIS
WHERE MID(class section, 1, 1)='O';
Again thank you!