I need to delete records from one the tblworkingtable. I am able to select the records to be deleted --however everytime I try to put it in a delete query I receive an error (e.g. not an updateable query) I have attached my select query that works.. but I am at a loss of where to go from here... Any help would be greatly appreciated
SELECT tblWorkingTable.ID, tblWorkingTable.CaseMatch, tblWorkingTable.[PDF Match], tblWorkingTable.Participating
FROM tblWorkingTable INNER JOIN [Records to Remove] ON (tblWorkingTable.[PDF Match] = [Records to Remove].[PDF Match]) AND (tblWorkingTable.CaseMatch = [Records to Remove].CaseMatch) AND (tblWorkingTable.ID = [Records to Remove].ID) AND (tblWorkingTable.Participating = [Records to Remove].Participating)
WHERE (((tblWorkingTable.CaseMatch)=[Records to remove].[pdf match]) AND ((tblWorkingTable.[PDF Match])=90 Or (tblWorkingTable.[PDF Match])=0)) OR (((tblWorkingTable.CaseMatch)=[Records to remove].[pdf match]) AND ((tblWorkingTable.Participating)="N/A"));
SELECT tblWorkingTable.ID, tblWorkingTable.CaseMatch, tblWorkingTable.[PDF Match], tblWorkingTable.Participating
FROM tblWorkingTable INNER JOIN [Records to Remove] ON (tblWorkingTable.[PDF Match] = [Records to Remove].[PDF Match]) AND (tblWorkingTable.CaseMatch = [Records to Remove].CaseMatch) AND (tblWorkingTable.ID = [Records to Remove].ID) AND (tblWorkingTable.Participating = [Records to Remove].Participating)
WHERE (((tblWorkingTable.CaseMatch)=[Records to remove].[pdf match]) AND ((tblWorkingTable.[PDF Match])=90 Or (tblWorkingTable.[PDF Match])=0)) OR (((tblWorkingTable.CaseMatch)=[Records to remove].[pdf match]) AND ((tblWorkingTable.Participating)="N/A"));