Aleniko
Hi;
I have 2 tables. polgr.dbf and po.dbf.
I want to query all the records from polgr and some matching info from PO.
The problem is that in some cases there will be 2 records in PO with the same PO#.
The following query produces duplicates if there are 2 records matching in PO.
select polgr.qopen,po.acct from polgr left join po on polgr.pono = po.pono
Is there a join condition or other way to avoid the duplicates
Thanks.