List all not in other table

Q

Question Boy

I need to generate a list of all the Project Number in a table that do not
appear in another table How would the SQL synthax go?

Table 1
Name: Parameters
Field: ProjNum

Table 2
Name: Eng
Field: ProjNum

I need to get a list of all the ProjNum in the Parameters table that do not
appear in the Eng table.

Thank you in advance for your guidance.

I will eventuallly master SQL... I hope

QB
 
Q

Question Boy

Never mind. Once I opened my eyes, I realized that the built in Unmatched
query wizard was exactly what I was looking for.

QB
 
M

Marshall Barton

Question said:
I need to generate a list of all the Project Number in a table that do not
appear in another table How would the SQL synthax go?

Table 1
Name: Parameters
Field: ProjNum

Table 2
Name: Eng
Field: ProjNum

I need to get a list of all the ProjNum in the Parameters table that do not
appear in the Eng table.


Try using the Find unmatched query wizard.
 
Top