Joining Tables:

SELECT orders.order_id, customers.customer_name
FROM orders
INNER JOIN customers ON orders.customer_id = customers.customer_id;

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *