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 `parametersitems` ADD INDEX `parametersitems_idx_parameterid_itemid` (`ParameterID`,`ItemID`);
SELECT
products.*
FROM
products
INNER JOIN
parametersitems AS paritems1
ON paritems1.ItemID = products.ID
AND paritems1.ParameterID = 7
INNER JOIN
parametersitems AS paritems2
ON paritems2.ItemID = products.ID
AND paritems2.ParameterID = 11