1-- LEFT OUTER JOIN is equivalent to LEFT JOIN
2-- b.VALUE1 is null when ID not in table2 (idem for c.VALUE1 in table3)
3SELECT a.ID, a.NAME, b.VALUE1, c.VALUE1 FROM table1 a
4 LEFT OUTER JOIN table2 b ON a.ID = b.ID
5 LEFT OUTER JOIN table3 c ON a.ID = c.ID
6WHERE a.ID >= 1000;
7
8-- ⇓ Test it ⇓ (Fiddle source link)
1LEFT OUTER JOIN:
2is used when retrieving data from
3multiple tables and will return
4left table and any matching right table records.
5
6RIGHT OUTER JOIN:
7is used when retrieving data from
8multiple tables and will return right
9table and any matching left table records
10