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/30-08-2020/nossa-casa-constru����o-de-1-6-mil-moradias-no-modelo-pre��o-social"
LIMIT
1