selectcount(*) as aggregate from `products` innerjoin `product_boxes` on `product_boxes`.`product_id` = `products`.`id` where (`products`.`category_id` =22and `products`.`in_catalog` =1and `products`.`product_view` ='available') and `product_boxes`.`parent_child` ='p'
selectCASEWHEN "2025-04-04" >= products.discounted_start_date
AND (products.discounted_end_date ISNULLOR "2025-04-04" <= products.discounted_end_date)
AND products.discounted_price < products.base_price
THEN products.discounted_price
ELSE products.base_price
ENDAS final_price from `products` innerjoin `product_boxes` on `product_boxes`.`product_id` = `products`.`id` where (`products`.`category_id` =22and `products`.`in_catalog` =1and `products`.`product_view` ='available') and `product_boxes`.`parent_child` ='p'