This is strange; I don’t seem to be able to control deletions within a query.
1. If I run this query, and try to delete the records it populates, it will delete the records from the 1temp table and not the ones from tblContact.
SELECT tblContacts.ContactID, tblContacts.*
FROM tblContacts INNER JOIN 1temp ON tblContacts.ContactID = [1temp].ContactID;
2. This simply will not run
DELETE tblContacts.ContactID, tblContacts.*
FROM tblContacts INNER JOIN 1temp ON tblContacts.ContactID = [1temp].ContactID;
This does not happen with other tables, that I know of.
1. If I run this query, and try to delete the records it populates, it will delete the records from the 1temp table and not the ones from tblContact.
SELECT tblContacts.ContactID, tblContacts.*
FROM tblContacts INNER JOIN 1temp ON tblContacts.ContactID = [1temp].ContactID;
2. This simply will not run
DELETE tblContacts.ContactID, tblContacts.*
FROM tblContacts INNER JOIN 1temp ON tblContacts.ContactID = [1temp].ContactID;
This does not happen with other tables, that I know of.