SELECT customers.customer_name, orders.order_id, customers.customer_type, orders_detail.orders_detail_product, orders.order_price
FROM customers
INNER JOIN orders
ON customers.customer_id=orders.customer_id
INNER JOIN orders_detail
ON orders.order_id=orders_detail.order_id
GROUP BY customers.customer_name