This question already has an answer here:
Iam trying to execute this query in my xampp, but it is not turning up.
SELECT pid,description,alttext FROM wp_ngg_pictures WHERE MATCH
(description, filename, alttext) AGAINST ('*image2*' IN BOOLEAN MODE) AND exclude != 1
it has returned this error
#1191 - Can't find FULLTEXT index matching the column list.
can any one help me plz
Manju
ALTER TABLE table ADD FULLTEXT index_name(column1);
Try the above query to add full text index to the columns.
来源:https://stackoverflow.com/questions/21693475/1191-cant-find-fulltext-index-matching-the-column-list