How to reset stop words in MYSQL?

前端 未结 5 2000
余生分开走
余生分开走 2020-12-10 16:36

I want to reset stop word list in mysql for FULLTEXT search. I have installed WAMP Server in my system which have phpmyadmin to access mysql. But I dont know how to reset st

5条回答
  •  旧巷少年郎
    2020-12-10 16:49

    i wass having same problem. stopwords file must be included under [mysqld] section in my.ini file.

    [mysqld] ft_stopword_file = 'D:/stop.txt' then

    repair table tablename worked for me.

提交回复
热议问题