In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
ALTER TABLE `Reports` ADD INDEX `reports_idx_date_channel_selleri_product` (`Date`,`ChannelId`,`SellerId`,`ProductId`);
SELECT
Reports.Date,
Reports.ChannelId,
Reports.SellerId,
Reports.ProductId,
Reports.Total
FROM
Reports
WHERE
Reports.Date = @Date
AND Reports.ChannelId = @ChannelId
AND Reports.SellerId = @SellerId
AND Reports.ProductId = @ProductId