Hello,
Can anyone confirm or have other suggestions for how to run these two different queries, one combines on 2 fields and another excludes on 2 fields?
Combine on 2 fields:
SELECT [Combines on 2 fields - step 1].[Unique ID Field A], [Combines on 2 fields - step 1].[Unique ID Field B]FROM [Combines on 2 fields - step 1] LEFT JOIN [Table 2] ON [Combines on 2 fields - step 1].[Unique ID Field B] = [Table 2].[Unique ID Field B];
Exclude on 2 fields:
SELECT [Table 1].ID, [Table 1].[Unique ID Field A], [Table 1].[Unique ID Field B]FROM [Table 1] LEFT JOIN [Table 2] ON ([Table 1].[Unique ID Field B] = [Table 2].[Unique ID Field B]) AND ([Table 1].[Unique ID Field A] = [Table 2].[Unique ID Field A])
WHERE ((([Table 1].[Unique ID Field B]) Is Null) AND (([Table 2].[Unique ID Field A]) Is Null));