Hi,
I need to create a query that will delete all records within TableA where they are present in TableB
The Matching Fields I have
OrderNo
OrderDate
DELETE FROM TableA
INNER JOIN TableB
ON TableA.OrderNo = TableB.OrderNo
AND TableA.OrderDate= TableB.OrderDate
however doesn't work
I need to create a query that will delete all records within TableA where they are present in TableB
The Matching Fields I have
OrderNo
OrderDate
DELETE FROM TableA
INNER JOIN TableB
ON TableA.OrderNo = TableB.OrderNo
AND TableA.OrderDate= TableB.OrderDate
however doesn't work
