Assuming A and B match on a field named ID, you could use something like
this:
DELETE FROM A
WHERE EXISTS
(SELECT B.ID FROM B WHERE B.ID = A.ID);
If subqueries are new, see:
http://allenbrowne.com/subquery-01.html

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Hi, this is my problem:
>
[quoted text clipped - 4 lines]
>
> What Im doing wrong....???