I am not too familiar with SQL, but I need to select from 3 tables.
I can go:
SELECT * FROM tbl1, tbl2, tbl3 WHERE ID=3
but there is a chance that tbl3 is does not have any rows with ID 3, and chances are that tbl1 has a few.
tbl2 should have only one row.
I would still like to get the rows in the other tables.
How can I accomplish this ?
Thanks up ahead!