I have two tables
tblDuplicateItems (list of many unique policy numbers)
tblPolicyData (many items with same policy no)
I have tried to create a delete query to remove all the items from tblPolicydata that have related policy numbers in tblDuplicateItems
It seems that Delete queries can only work on a single criteria and will not loop through the table tblDuplicateItems
Is it possible to create a many to many delete query based on this scenario?
tblDuplicateItems (list of many unique policy numbers)
tblPolicyData (many items with same policy no)
I have tried to create a delete query to remove all the items from tblPolicydata that have related policy numbers in tblDuplicateItems
It seems that Delete queries can only work on a single criteria and will not loop through the table tblDuplicateItems
Is it possible to create a many to many delete query based on this scenario?