I'm trying to join two tables. One table contains multiple addresses. Second table contains addresses I do not want from the first table. When I run it I want it to populate with all addresses excluding those from the second table.
I read somewhere that this is done in SQL view and not design view. It looks like this:
SELECT
FROM [32 Names] INNER JOIN [Final Address] ON [32 Names].FULL_NAME = [Final Address].FULL_NAME;
Final Address contains all of the addresses. 32 Names contains those addresses I do not want.
How can I do this?