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 `pension_info_allowance` ADD INDEX `pension_allowance_idx_pension_id` (`pension_info_result_id`);
ALTER TABLE `pension_info_pension` ADD INDEX `pension_pension_idx_pension_id` (`pension_info_result_id`);
ALTER TABLE `pension_info_result` ADD INDEX `pension_result_idx_id` (`id`);
SELECT
*
FROM
pension_info_result AS pir
JOIN
pension_info_pension AS pip
ON pir.id = pip.pension_info_result_id
JOIN
pension_info_allowance AS pia
ON pir.id = pia.pension_info_result_id
WHERE
pir.id = ?