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 `users` ADD INDEX `users_idx_id` (`id`);
SELECT
b.id,
b.name,
b.user_id,
u.nickname AS user_nickname,
u.avatar AS user_avatar
FROM
blogs b
LEFT JOIN
users u
ON b.user_id = u.id