I get the error: Specify the table containing the records you want to delete. Here’s the SQL:
DELETE tblcarrier.Store#, tblcarrier.Request, tblcarrier.Date, tblPkupNoCmp.ACT
FROM tblcarrier INNER JOIN tblPkupNoCmp ON tblcarrier.Store# = tblPkupNoCmp.Store#
WHERE tblPkupNoCmp.ACT="NoInfo" Or (tblPkupNoCmp.ACT<>"OK";
I’m trying to delete records from table tblPkupNoCmp that is joined to table tblcarrier and I get the error above. How can I revise this?
DELETE tblcarrier.Store#, tblcarrier.Request, tblcarrier.Date, tblPkupNoCmp.ACT
FROM tblcarrier INNER JOIN tblPkupNoCmp ON tblcarrier.Store# = tblPkupNoCmp.Store#
WHERE tblPkupNoCmp.ACT="NoInfo" Or (tblPkupNoCmp.ACT<>"OK";
I’m trying to delete records from table tblPkupNoCmp that is joined to table tblcarrier and I get the error above. How can I revise this?