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 `jobs` ADD INDEX `jobs_idx_status_country_job_title` (`status`,`country`,`job_title`);
SELECT
count(jobs.job_title) AS count,
jobs.job_title
FROM
jobs
WHERE
jobs.status = 'active'
AND jobs.country = 'United States'
GROUP BY
jobs.job_title
ORDER BY
count DESC LIMIT 14