FoxProProgrammer
Programmer
I have three tables. Call them A, B, and C. Table A has a primary key named JobID. Tables B and C are related to A by JobID. How do I write a Query to return all records in B and C that don't match a JobID in A? For example:
Table A has records with JobID = 1, 2, 3, 4, 5
Table B has records with JobID = 2, 5
Table C has records with JobID = 1, 2
The Query should return 3 and 4 since those JobIDs are in table A, but not in table B or C.
Thank you very much.
dz
Table A has records with JobID = 1, 2, 3, 4, 5
Table B has records with JobID = 2, 5
Table C has records with JobID = 1, 2
The Query should return 3 and 4 since those JobIDs are in table A, but not in table B or C.
Thank you very much.
dz