Hello Everyone! I hope you can assist...
I have 2 tables. One with a full list of Bus numbers (BUSPMT) with default unselected Out of Service OOS column and One with a list out buses (OOST) that are OOS. I need a complete list of the first table BUSPMT with the OOS buses selected as TRUE.
I tried to do this with JOINs and Sub-Queries without success.
BUSPMT: Table BUS Location Service OOS 100 SMF Fixed FALSE 101 SMF Fixed FALSE 102 IBMF Fixed FALSE 103 IBMF Para FALSE 104 IBMF Para FALSE 105 SMF Para FALSE 106 SMF Fixed FALSE 107 SMF Fixed FALSE OOST: Table BUS Contractor OOS 103 Para TRUE 107 Fixed TRUE Desired Result: BUSPMTQuery: Query BUS Location Service OOS 100 SMF Fixed FALSE 101 SMF Fixed FALSE 102 IBMF Fixed FALSE 103 IBMF Para TRUE 104 IBMF Para FALSE 105 SMF Para FALSE 106 SMF Fixed FALSE 107 SMF Fixed TRUE
Thank you for any assistance!