M
Martin A. Weinberger
Hi all,
I have 5-tables that I want to combine. My first thought on a query was
SELECT Table1.*, Table2.*, Table3.*, Table4.*, Table5.* FROM Table1, Table2,
Table3, Table4, Table5 WHERE (Table1.lIDPrimary > 0);
The problem with this statement is that I get no rows back and not all data
from all tables. I was told that the query above is an INNER JOIN and I want
to use an OUTER JOIN. How do I create a query that returns all the rows?
Thanks in advance,
I have 5-tables that I want to combine. My first thought on a query was
SELECT Table1.*, Table2.*, Table3.*, Table4.*, Table5.* FROM Table1, Table2,
Table3, Table4, Table5 WHERE (Table1.lIDPrimary > 0);
The problem with this statement is that I get no rows back and not all data
from all tables. I was told that the query above is an INNER JOIN and I want
to use an OUTER JOIN. How do I create a query that returns all the rows?
Thanks in advance,