Hi, This query pops up in my slow query logs:
select count(*) as ordersCount, sum(ItemsPrice + COALESCE(extrasPrice, 0.0)) as totalValue, sum(ItemsPrice) as totalValue, sum(std_delivery_charge) as totalStdDeliveryCharge, sum(extra_delivery_charge) as totalExtraDeliveryCharge, this_.type as y5_, this_.transmissionMethod as y6_, this_.extra_delivery as y7_ from orders this_ where this_.deliveryDate between '2010-01-01 00:00:00' and '2010-09-01 00:00:00' and this_.status in (1, 3, 2, 10, 4, 5, 11) and this_.senderShop_id=10017 group by this_.type, this_.transmissionMethod, this_.extra_delivery order by this_.deliveryDate desc;
The table is InnoDB and has about 880k rows and takes between 9-12 seconds to execute. I tried adding the following index ALTER TABLE orders ADD INDEX _deliverydate_senderShopId_status ( deliveryDate , senderShop_id , status, type, transmissionMethod, extra_delivery);
with no practical gains.
Any help and/or suggestion is welcomed
Thanks