hello,
i'm in need of a join statement, that outer-joins three tables ( A, b, c )
A is the "main" table( all elements should come up )
b and c are only secondary ( and should only come up, when there's an equivalent
in table A )
i got an outer-join for two tables from the net which is:
select * from A,b WHERE A.id=b.id OR b.id IS NULL
( thats functioning )
now i want to expand that to the three tables.
any idea how that statement will look like ???