要删除A表
条件是不满足以下的情况
(A.x = B.x
 A.y = B.y
 A.z = B.z )我写的语句如下
delete from A
where not exists(select 1 from B
                 where A.x = B.x
                   and A.y = B.y
                   and A.z = B.z)这样写对吗?
我调试了一下,发现把不符合条件的数据也删除掉了,怎么回事?