joebloeonthego
Technical User
I'm getting the 'operation must use an updatable query' error.
My problem is that I'm trying to delete all records in table A that have matching fields in table B (if it was just one field, I would do a IN(Select blah)).
Here's what I'm trying to do:
any suggestions?
My problem is that I'm trying to delete all records in table A that have matching fields in table B (if it was just one field, I would do a IN(Select blah)).
Here's what I'm trying to do:
Code:
DELETE A.*
FROM A
INNER JOIN B
ON A.reqdate = B.duedate AND A.plant = B.shipcode AND A.qty = B.ordqty AND A.partID = B.PN;
any suggestions?