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 `request_table` ADD INDEX `request_table_idx_custome_custome_report_report` (`customer_id_1`,`customer_id_2`,`report_request_id`,`report_type`);
SELECT
request_table.report_id
FROM
request_table
WHERE
request_table.customer_id_1 = '283649'
AND request_table.customer_id_2 = '2893463'
AND request_table.report_request_id = ''
AND request_table.report_type = 'vat'