with t1 as( select cu.customer_id, customer_age, order_id, product_id, quantity, order_date from customers cu left join orders ord on cu.customer_id = ord.customer_id ) , t2 as ( select customer_id, customer_age, order_id, t1.product_id, product_name, unit_price, quantity, order_date from t1 left jo...