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:
SELECT
'[cross]',
IFNULL(d2.title,
"") AS title,
c2.maker,
c2.partnum,
c2.price,
c2.sku
FROM
`cross` c2
LEFT JOIN
data d2
ON d2.partnum = c2.sku
WHERE
1 = 1
GROUP BY
c2.partnum
ORDER BY
NULL