Advanced
Write a Complex SQL Join
Construct a SQL query to join three tables.
📝 प्रॉम्ट सामग्री
Write a SQL query to retrieve the customer name, order ID, and product name from three tables: Customers, Orders, and Products. Assume Customers has a customer_id, Orders has order_id and customer_id, and Products has product_id and order_id. Use an INNER JOIN to ensure only matching records are returned.