Reference solution
The shape we check against. Compare it with your query: the set of rows matters, the formatting does not.
SELECT o.id AS order_id, c.name AS customer_name, o.order_date FROM orders o JOIN customers c ON c.id = o.customer_id WHERE o.status = 'completed' ORDER BY o.id;