Hi everybody,
I was wondering, is there a way to make a kind of one to one left outer join:
I need a join that matches say table A with table B, for each record on table A it must search for its pair on table B, but there exists only ONE record that match that condition, so when it found its pair on B, it must stop and continue with the next row at table A.
What I have is a simple LEFT OUTER JOIN.
select * from A LEFT OUTER JOIN B ON A.ID = B.ID ORDER BY (NAME) ASC
Thanks in advance!