01 / 05
What the number points at
Put the two tables side by side and something is shared. The number sitting in orders.item_id is a number from items.id.
So if order 3 has an item_id of 2, it is the item whose id is 2 in items.
SELECT item_id FROM orders WHERE id = 3;Result
2