I am needing SQL guru help on joining three tables in a select statement. I have table1, table2, table3
Table1 and table2 are joined by a common column. Then I need to join Table3 to those using an outer join. That way all the rows from Table1 and Table2 will show and only some of the matching data from Table3. I can inner join table1 and table2 but not sure on how to left outer join table three to table2. TIA Dan Goldberg

