with t1 as( select s.product_id , product_name , sum(quantity) total_sales from sales_underline s left join products_underline p on s.product_id = p.product_id where sale_month between '2024-01' and '2024-06' group by 1,2) , t2 as( select product_id,product_name,max_monthly_sales,min_monthly_sales,a...