I have 2 tables in sql server ...
- Table 1 contains 100,000 account names and account IDs
- Table 2 contains 10,000 account names and account IDs that are already included in table 1
I need to show all the records that are in table 1, that don't also appear in table 2 (so that should give me 90,000 results.
I am completely stuck on how to show this, whether it be a join or a select in the where clause
thanks, and apologies I know lots of things like this are out in the ether