M
mcl
I have been able to get a delete query to display the records I want to
delete when I select view but when I try to execute it, it says it's can't
delete the records. What would cause that?
Here's the actual sql code:
DELETE Datsav3.*, Audit_by_Year_Month.CountOfmo
FROM Datsav3 INNER JOIN Audit_by_Year_Month ON (Datsav3.blkstn =
Audit_by_Year_Month.blkstn) AND (Datsav3.year = Audit_by_Year_Month.year)
AND (Datsav3.mo = Audit_by_Year_Month.mo)
WHERE (((Audit_by_Year_Month.CountOfmo)<10));
delete when I select view but when I try to execute it, it says it's can't
delete the records. What would cause that?
Here's the actual sql code:
DELETE Datsav3.*, Audit_by_Year_Month.CountOfmo
FROM Datsav3 INNER JOIN Audit_by_Year_Month ON (Datsav3.blkstn =
Audit_by_Year_Month.blkstn) AND (Datsav3.year = Audit_by_Year_Month.year)
AND (Datsav3.mo = Audit_by_Year_Month.mo)
WHERE (((Audit_by_Year_Month.CountOfmo)<10));