Nested Loop Join
— for each outer row, scan the inner side
← all topics
SELECT
c.name, o.total
FROM
customers c
JOIN
orders o
ON
o.customer_id = c.id;
Outer: customers (3 rows)
Pairing
(idle)
Output rows
Inner: orders (6 rows)