Hello people,
I'm trying to join 2 table which the idea is to get a set of records in tableA that does not exist in table B.
So I type a query like this :
while select TableA
notexists join TableB
where TableA.ReceiptNum == TableB.receiptId
&& TableA.IsClosed == NoYes::No
{
}
I wonder whether this is correct because as you can see I have 1 more condition for Table A, but it seems in the while loop still retrieve records in TableA which "IsClosed=Yes"
Thanks,