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/13-05-2022/maio-amarelo-associa����o-alerta-para-riscos-do-celular-ao-volante"
LIMIT
1