G
Guest
I am trying to delete a record from one table that has a code that is
standard = yes in another table. I've tried it two ways and I get the same
error that reads, "Specify the table containing the records you want to
delete."
Try 1:
DELETE DISTINCTROW Clean_Export.Rec_Ident
FROM Clean_Export LEFT JOIN Cntr_Checks ON
Clean_Export.Rec_Ident=Cntr_Checks.CNTR_CODE
WHERE (((Cntr_Checks.STANDARD)=Yes));
Try 2:
DELETE DISTINCTROW Clean_Export.Rec_Ident, Cntr_Checks.Standard
FROM Clean_Export LEFT JOIN Cntr_Checks ON Clean_Export.Rec_Ident =
Cntr_Checks.Cntr_Code
WHERE (((Cntr_Checks.Standard)=Yes));
This is going to make me crazy!
standard = yes in another table. I've tried it two ways and I get the same
error that reads, "Specify the table containing the records you want to
delete."
Try 1:
DELETE DISTINCTROW Clean_Export.Rec_Ident
FROM Clean_Export LEFT JOIN Cntr_Checks ON
Clean_Export.Rec_Ident=Cntr_Checks.CNTR_CODE
WHERE (((Cntr_Checks.STANDARD)=Yes));
Try 2:
DELETE DISTINCTROW Clean_Export.Rec_Ident, Cntr_Checks.Standard
FROM Clean_Export LEFT JOIN Cntr_Checks ON Clean_Export.Rec_Ident =
Cntr_Checks.Cntr_Code
WHERE (((Cntr_Checks.Standard)=Yes));
This is going to make me crazy!