ScottishFencer
Technical User
Code:
DELETE tblAC.*
FROM tblAC INNER JOIN qrySQCDuplicateAssessmentChecker ON tblAC.txtID = qrySQCDuplicateAssessmentChecker.txtID;
I'm weeding out some duplicates from tblAC using a query that filters out the excess records.
I'm getting the error message "Could not delete from specified tables"
In this table the only thing of note is that txtID and txtAC are keys.