SELECT DISTINCT course.course_no, description
FROM course, section
WHERE location = 'L210'
ORDER BY course_no
Here is the problem: Give me a list of courses (by course_no and description) that are taught in room L210
But now find out I need to use the JOIN...ON... syntax
Need help redoing that with the above statement I started...Any takers?