Problems / Inner Join Basics / Editorial
orders
customers
customer_id
order_id
An INNER JOIN is the default join type. It filters out rows from both sides that don't have a match. Here, customers 4 (Diana), 6 (Frank), and 8 (Hank) have no orders, so they don't appear.
Solve Inner Join Basics yourself →