OK, here is my situation (simplified)
I have two tables. 'Clients' and 'New Clients'
Table 'Clients' just has one field 'Client Name' and this table should never be edited
Table 'New Clients' has multiple fields which includes 'Client Name' and new data is added to it regularly.
I created a query with a simple inner join to show duplicates between the two tables
Sometimes this may be 20 or 30 names depending on how regularly it is checked. I want to be able to select all the names in the query and delete them, but i only want them deleted from table 'New Clients' and for the names to remain in 'Clients'. However, the exact opposite is inexplicably happening and it is only deleting the names from the table 'Client' and leaving them in 'New Clients'
Does anybody know how to solve this?
P.S....even better would be if it stopped me / told me that the name already existed in 'Clients' when someone originally enters it in the field 'Client Name' in the table 'New Client'
Thanks!
Matt