I need to add a bunch of record from table 1 to table 2 provided that they don't already exist in table 2.
I originally had an action query to append records from table 1 into table 2 plus some additional info, but this doesn't check for duplicates. I will need to do a separate process to check that the record doesn't already exist in table 2. This sounds like 2 query processes.
Do I have to create a query looping through records in table 1 before appending them to table 2? or can I do this with action (append) query?
I originally had an action query to append records from table 1 into table 2 plus some additional info, but this doesn't check for duplicates. I will need to do a separate process to check that the record doesn't already exist in table 2. This sounds like 2 query processes.
Do I have to create a query looping through records in table 1 before appending them to table 2? or can I do this with action (append) query?