I was wondering if there is a way to make my one and only outer join:
I need a join that matches table A of table A with table B, for each record in table A she should look for her pair in table B, but there is only one record matching this condition, so when she finds her pair on B, he should stop and continue the next line in table A.
I have a simple LEFT EXTERNAL UNION.
select * from A LEFT OUTER JOIN B ON A.ID = B.ID ORDER BY (NAME) ASC
Thanks in advance!
source
share