Erreur SQL !
SELECT ID,NOM_PRODUIT,MATCH(NOM_PRODUIT) AGAINST ('Livre: la cuisine à l'huile d'olive') AS 'pertinence'
FROM v2_produit_magasin
WHERE
MATCH(NOM_PRODUIT) AGAINST ('Livre: la cuisine à l'huile d'olive') AND ID!=489
ORDER BY pertinence DESC limit 5
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'huile d'olive') AS 'pertinence'
FROM v2_produit_magasin
WH