#1191 - Can't find FULLTEXT index matching the column list [duplicate]

百般思念 提交于 2019-11-27 08:13:32

问题


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


回答1:


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!