N
News
I am trying to run a delete query that deletes records in a table called
PhysInv which have the same ItemNo as records in a table called
ItemToDelete. Access says it cannot delete records from the specified
tables but I can see the records I want to delete in datasheet view. What's
the problem?
DELETE PhysInv.*, ItemToDelete.PhysInvItemNo
FROM PhysInv INNER JOIN ItemToDelete ON PhysInv.ItemNo =
ItemToDelete.PhysInvItemNo
WHERE (((ItemToDelete.PhysInvItemNo)=[PhysInv]![ItemNo]));
PhysInv which have the same ItemNo as records in a table called
ItemToDelete. Access says it cannot delete records from the specified
tables but I can see the records I want to delete in datasheet view. What's
the problem?
DELETE PhysInv.*, ItemToDelete.PhysInvItemNo
FROM PhysInv INNER JOIN ItemToDelete ON PhysInv.ItemNo =
ItemToDelete.PhysInvItemNo
WHERE (((ItemToDelete.PhysInvItemNo)=[PhysInv]![ItemNo]));