Problems / Multi Table Join / Editorial
orders
customers
customer_id
products
product_id
line_total = quantity * price
order_id
Multi-table joins are chained sequentially. Each JOIN adds columns from another table. The order of joins doesn't affect the result for INNER JOINs, but starting from the fact table (orders) is a common and readable pattern.
Solve Multi Table Join yourself →