Please help
I need to do an outer join on two tables A & B
select * from A, B
where a.1 = a.1
and a.2 = b.2
and a.3 =+ b.3
so that I need to find a match on the first two colums 1 & 2, but the last, 3, is the one that is the outer join column, where if not in b still show me everything in a.
thanks in advance
I need to do an outer join on two tables A & B
select * from A, B
where a.1 = a.1
and a.2 = b.2
and a.3 =+ b.3
so that I need to find a match on the first two colums 1 & 2, but the last, 3, is the one that is the outer join column, where if not in b still show me everything in a.
thanks in advance