Slide 30
Slide 30 text
join on L.column2 = R.column1
(a, 1) - (1, %) ✅ "true" match
(a, 1) - (3, &) "false" match
(a, 1) - null because already matched
(b, 2) - (1, %) "false" match
(b, 2) - (3, &) "false" match
(b, 2) - null ✅ "no match"
null - (1, %) because already matched
null - (3, &) ✅ "no match"