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/08-11-2021/depois-de-bater-em-mulher-e-invadir-casa-da-sogra-homem-��-preso-ap��s-trocar-tapas-com-pol��cia"
LIMIT
1