Getting all items not listed in a table
The first table lists all instances of a school
The second lists all reports filed and the year, and schoolID they were filed for
I want to know how I can create a SQL query that will give me all of the schools that are not in the second table for a given year(all the school that have yet to submit a report).
Pretend these are the Tables
Schools:
School ID
School Name
Reports:
ReportID
SchoolID
ReportYear
I want to show all of the schoolNames
Thanks

