Skip to content
Advertisement

Why aren’t these two attributes being filtered for?

I am writing an query that determines which courses were held in large lecture halls or auditorium type classrooms in Summer Quarter of 2016.

When I execute it, it successfully filters for the Classroom Types of either Large Lecture or Audio but it doesn’t do the same for both Quarter and Year

Sample Output:

enter image description here

Advertisement

Answer

Replace following in your query.

CT.ClassroomTypeName = 'Large Lecture Hall' OR CT.ClassroomTypeName = 'Auditorium'

with

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement