F
fred
I'm trying to run a delete query.
I'm running the following SQL code:
DELETE tblPeople.*, tblPeople.DateCreated, tblCases.CaseID
FROM tblPeople LEFT JOIN tblCases ON tblPeople.PersonID =
tblCases.PersonID
WHERE (((tblPeople.DateCreated)<#6/1/2004#) AND ((tblCases.CaseID) Is
Null));
Access returns the error "Could not delete from specified tables"
tblpeople has a relationship with tblcases.
I'm running the following SQL code:
DELETE tblPeople.*, tblPeople.DateCreated, tblCases.CaseID
FROM tblPeople LEFT JOIN tblCases ON tblPeople.PersonID =
tblCases.PersonID
WHERE (((tblPeople.DateCreated)<#6/1/2004#) AND ((tblCases.CaseID) Is
Null));
Access returns the error "Could not delete from specified tables"
tblpeople has a relationship with tblcases.