Hi Community,
i get an infinite loop on a query with three tables:
while select Table1
where Table1.RecId == 123456789
join Table2
where Table2.Voucher == Table1.Voucher
join Table3
where Table3.RecId == Table2.TransRecId
{
do something;
}
I ran the query manually, that is opened table browsers and entered the criteria from my query. I got three records from Table3.
When I debug I noticed that the query selects all existing records in Table3.
Can you help me on what I am missing on this query? is there some issue with flags that should be fixed?