I am working with three tables:
1) TableResources, with fields: ResourceID_pk, ResourceName
2) TableCategories, with fields: CategoryID_pk, CategoryName
3) TableResCats, with fields: ResCatID_pk, ResourceID_fk, CategoryID_fk, ResCatNote
TableResources is already populated with a list of resources. TableCategories is already populated with a list of categories. And TableResCats is partially populated with most (but not every) resource, and some (but not all) categories.
I want to populate TableResCats with one complete set of categories for each resource, without appending a category that is already in TableResCats for a particular resource.
I've been round and round with inner and outer joins, unmatched queries, etc. and can't seem to crack this nut. Any help would be greatly appreciated - thanks!
1) TableResources, with fields: ResourceID_pk, ResourceName
2) TableCategories, with fields: CategoryID_pk, CategoryName
3) TableResCats, with fields: ResCatID_pk, ResourceID_fk, CategoryID_fk, ResCatNote
TableResources is already populated with a list of resources. TableCategories is already populated with a list of categories. And TableResCats is partially populated with most (but not every) resource, and some (but not all) categories.
I want to populate TableResCats with one complete set of categories for each resource, without appending a category that is already in TableResCats for a particular resource.
I've been round and round with inner and outer joins, unmatched queries, etc. and can't seem to crack this nut. Any help would be greatly appreciated - thanks!