Erreur sur la requête SQL.
Message : Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='
Code : SELECT p.id as real_id, p.ordre, p.category, p.sub, p.title, p.image1, p.online, sc.id, sc.ordre, sc.nom, sc.categorie, sc.online
FROM produits p
LEFT JOIN sous_categories sc
ON p.sub = sc.nom
WHERE p.title IS NOT NULL
AND p.online = 1
AND p.category = 'Actualit��s'
ORDER BY sc.ordre ASC, p.ordre ASC