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 `catch_estimation` ADD INDEX `catch_estimation_idx_month_centername` (`month`,`centername`);
ALTER TABLE `gearwise_estimation` ADD INDEX `gearwise_estimatio_idx_estimationid` (`estimationid`);
SELECT
`start`.*
FROM
`gearwise_estimation`
JOIN
`catch_estimation`
ON `gearwise_estimation`.`estimationid` = `catch_estimation`.`estiamteid`
AND `year` = 2018
WHERE
catch_estimation.month LIKE '%8%' ESCAPE '!'
AND catch_estimation.month LIKE '%9%' ESCAPE '!'
AND gearwise_estimation.gearname LIKE '%OBGN%' ESCAPE '!'
AND catch_estimation.centerid LIKE '%2%' ESCAPE '!'
ORDER BY
`catch_estimation`.`month` ASC,
`catch_estimation`.`centername` ASC