I have a Projects table, which lists the client info. Then I have four related jobs tables, for jobs within that project - Roofing, Siding, Gutters and Misc. The four tables have a projectID field to link them to the Projects table, and they all have a 'status' field. A project can have any combination of jobs.
I want to be able to select only the projects where all the job status fields are marked "completed."
There's probably a simple way to do this, but my brain overheats sometimes with SQL.