Error in query: Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='
SQL executed:
SELECT
blog.*,
users.user_has_avatar,
blog_category.name AS categoryName,
users_info.slug AS uSlug,
users_info.text AS aboutText,
CONCAT(users.user_first_name, IFNULL(CONCAT(' ', users.user_last_name),'')) AS fullName
FROM
blog
INNER JOIN
users ON blog.userCreated = users.user_id
INNER JOIN
users_info ON blog.userCreated = users_info.user
LEFT JOIN
blog_category ON blog.category = blog_category.id
WHERE
blog.deleted = 0 AND
blog.slug = "noticias/ver/09-12-2021/ja��-orienta-produtores-sobre-fornecimento-de-merenda-escolar-��s-escolas-municipais"
LIMIT
1