N
Newbie
I have two tables and i want to delete out of table 1 all the records where
the same item appears in table 2
Here is what I have but it wont let me delete the records.
DELETE tblStructures.*
FROM tblStructures INNER JOIN tblRoutings ON tblStructures.Component =
tblRoutings.Workcentre;
What am I doing wrong?
the same item appears in table 2
Here is what I have but it wont let me delete the records.
DELETE tblStructures.*
FROM tblStructures INNER JOIN tblRoutings ON tblStructures.Component =
tblRoutings.Workcentre;
What am I doing wrong?