I need to capture records that have dropped from joining two queries. When right-joined these records dropped and this was fine until it was decided we would like to capture the dropped records, research them, and clean them up. I found a book that refers to theta joins --- however I'm a newbie and would like to get an easier 'workable' solution. Below is my SQL:
SELECT [FP06 Athletics query#1].*
FROM [FP06 Athletics query#1] LEFT JOIN [FP06 Exclusions] ON [FP06 Athletics query#1].CONSID_TABLE = [FP06 Exclusions].EXCLUSIONS_TABLE
WHERE ((([FP06 Exclusions].EXCLUSIONS_TABLE) Is Null));
It successfully removed over 300 records. We'd like to capture the 300 records and clean them up. Thanks in advance for help in this matter.
SELECT [FP06 Athletics query#1].*
FROM [FP06 Athletics query#1] LEFT JOIN [FP06 Exclusions] ON [FP06 Athletics query#1].CONSID_TABLE = [FP06 Exclusions].EXCLUSIONS_TABLE
WHERE ((([FP06 Exclusions].EXCLUSIONS_TABLE) Is Null));
It successfully removed over 300 records. We'd like to capture the 300 records and clean them up. Thanks in advance for help in this matter.