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 `entite` ADD INDEX `entite_idx_id_entite` (`id_entite`);
ALTER TABLE `variations` ADD INDEX `variations_idx_id` (`id`);
SELECT
e.id,
e.name,
v.name
FROM
var_entite ve
JOIN
entite AS e
ON e.id_entite = ve.id_entite
JOIN
variations AS v
ON v.id = ve.id_var