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 `Table1` ADD INDEX `table1_idx_age` (`age`);
ALTER TABLE `Table2` ADD INDEX `table2_idx_firstname` (`firstName`);
SELECT
1
FROM
Table1 AS t1
INNER JOIN
Table2 AS t2
ON t2.firstName = t1.firstName
WHERE
t2.firstName = 'John'
AND t1.age > 14