i have three tables table1, table2 and table3.
select * from table1, table2, table3
where table1.ID = "IDnumber"
table1.ID = table2.ID
table1.ID = table3.ID
if table3 doesnt have any rows with a matching IDnumber it wont return any results even if table1 and table2 have rows with the same IDnumber. how can i modify my query so i get a rows even if there are no rows on table3...