Trying to write a sql statement to return all records from 3 tables, but it is eliminating the records if data is missing from a related table.
My statement select * from table 1 table 2 table 3
where table1.idnum=table2.idnum and table2.idnum=table3.idnum.
How can I get the data to report for tables 1 and 2 if there is no related data in table3?
My statement select * from table 1 table 2 table 3
where table1.idnum=table2.idnum and table2.idnum=table3.idnum.
How can I get the data to report for tables 1 and 2 if there is no related data in table3?