WRInaute impliqué
Bonjour,
Je suis en train d'appliquer ce tutoriel : http://omiossec.developpez.com/mysql/fulltext/etudes/
J'ai donc créé mon code :
Ma table article contient : id | titre | description | date
mais ça marche pas ça m'affiche : Can't find FULLTEXT index matching the column list
Il faut apparemment que je créé un autre champ dans ma table genre d'après le tutoriel quand il a créé la table il a mis : FULLTEXT INDEX example_fulltext_plein(texte, commentaire, titre),
Ce que j'ai pas moi dans ma table !! Comment faire svp ?
Je suis en train d'appliquer ce tutoriel : http://omiossec.developpez.com/mysql/fulltext/etudes/
J'ai donc créé mon code :
Code:
SELECT id, MATCH (titre, description , date) AGAINST ('comment créer un texte') AS cpt
FROM article
ORDER BY cpt DESC
Ma table article contient : id | titre | description | date
mais ça marche pas ça m'affiche : Can't find FULLTEXT index matching the column list
Il faut apparemment que je créé un autre champ dans ma table genre d'après le tutoriel quand il a créé la table il a mis : FULLTEXT INDEX example_fulltext_plein(texte, commentaire, titre),
Ce que j'ai pas moi dans ma table !! Comment faire svp ?