J
jimjamz
Guest
This is so simple & i feel so stoopid...
I'm trying to delete recrods from tblWastage_AllProducts where there is matches from the temp table.
It gives me the error 'could not delete from specified tables'.
I just dont get it. ??
DELETE tblWastage_AllProducts.*
FROM tblWastage_AllProducts_TMP_delete INNER JOIN tblWastage_AllProducts ON tblWastage_AllProducts_TMP_delete.IndexWastage = tblWastage_AllProducts.IndexWastage;
I've never managed to do a delete from a Query & a table before thus i created two tables and will drop the temp table afterwards...
I'm trying to delete recrods from tblWastage_AllProducts where there is matches from the temp table.
It gives me the error 'could not delete from specified tables'.
I just dont get it. ??
DELETE tblWastage_AllProducts.*
FROM tblWastage_AllProducts_TMP_delete INNER JOIN tblWastage_AllProducts ON tblWastage_AllProducts_TMP_delete.IndexWastage = tblWastage_AllProducts.IndexWastage;
I've never managed to do a delete from a Query & a table before thus i created two tables and will drop the temp table afterwards...