with product_price as ( select product_id,unit_price,customer_age,customer_id,quantity,month(order_date) as month from orders join products using (product_id) join customers using (customer_id) ), cte1 as ( select product_id, sum(unit_price*quantity) as total_sales,unit_price, sum...