I have two tables in an Access database, one to hold the main content and the other that acts as a link back to the same table. I need to retrieve everything that is in the first table that doesnt appear in the second table.
Example :-
So the query would return "Fred" and "George".
is there a SQL statement that will do this or is it a bit more complicated?
Example :-
Code:
Table 1: Table 2:
ID | Description Table1iD | LinkNum
2 Fred 2 5
5 Bill 2 6
6 Bob
7 George
is there a SQL statement that will do this or is it a bit more complicated?