Join three tables
SQL
Easy
2 views
Problem Description
Show order_id, customer name, and total_amount.
Official Solution
SELECT o.order_id, c.name, o.total_amount FROM Orders o JOIN Customers c ON c.customer_id = o.customer_id;
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!