T-SQL 101: 106 Using LEFT OUTER JOIN
The next type of join that I want to discuss in these posts is a left outer join. We use this mostly, when we know that not all rows are matching.
For example, in the query shown above, I wanted to add up the ordered quantity values for all products. The problem is that if I used an INNER JOIN, I would only get products that match at least one order line.
2025-02-02
