I am converting Access to SQL and I got stuck at this Delete Statement because I am not sure what it does exactly.
DELETE TableA.cID, TableB.*
FROM TableA RIGHT JOIN TableB ON TableA.cID = TableB.CID2
WHERE (((TableA.cID) Is Null));
I am guessing it is something like this:
Delete
from TableA right join TableB ON TableA.cID = TableB.CID2
Where TableA.cID is null
I am not really sure if it should delete from 1 table or 2 or..