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 `articles` ADD INDEX `articles_idx_publicationdate` (`publicationDate`);
ALTER TABLE `articles_authors` ADD INDEX `articles_authors_idx_fk_authors` (`fk_Authors`);
SELECT
articles_id
FROM
(SELECT
articles.id AS articles_id
FROM
articles
ORDER BY
articles.publicationDate LIMIT 50) AS articles
INNER JOIN
articles_authors
ON articles.articles_id = articles_authors.fk_Articles
WHERE
articles_authors.fk_Authors = 586 LIMIT 50