G
Guest
I got the following message after issuing a delete query:
Could not delete from specified tables
The code is as follows:
DELETE tblPCSR.*, tblPCSR.StandType, tblEmployees.HRNum
FROM tblPCSR LEFT JOIN tblEmployees ON tblPCSR.HRNum = tblEmployees.HRNum
WHERE (((tblPCSR.StandType)<>"C") AND ((tblEmployees.HRNum) Is Null));
Why would the data not be able to be deleted ? When I ran as a select, it
listed a record.
Could not delete from specified tables
The code is as follows:
DELETE tblPCSR.*, tblPCSR.StandType, tblEmployees.HRNum
FROM tblPCSR LEFT JOIN tblEmployees ON tblPCSR.HRNum = tblEmployees.HRNum
WHERE (((tblPCSR.StandType)<>"C") AND ((tblEmployees.HRNum) Is Null));
Why would the data not be able to be deleted ? When I ran as a select, it
listed a record.