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 `FehlerCodes_akt_Liste` ADD INDEX `fehlercodes_liste_idx_cdt_fehlerpfad` (`CDT`,`Fehlerpfad`);
SELECT
DISTINCT tb_bauteile.*
FROM
tb_bauteile
LEFT JOIN
FehlerCodes_akt_Liste
ON tb_bauteile.CDT = FehlerCodes_akt_Liste.CDT
WHERE
(
(
(
FehlerCodes_akt_Liste.Steuergerät
) = 'MEDC17'
)
)
ORDER BY
FehlerCodes_akt_Liste.Fehlerpfad