with a as( select category, age_group, sum(price*quantity) as total_sales_amount from sales s join products p on s.product_id = p.product_id join customer_info c on c.sale_id = s.sale_id group by category,age_group) select category as product_category, age_group, total_sales_amount, round(total_sale...