Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经将 ft_min_word_len 设置为 3,所以一个简单的搜索是这样的:
SELECT * FROM store_product_description WHERE MATCH(name) AGAINST('lag' IN BOOLEAN MODE);
应该工作,但它没有。“名称”列是具有全文索引的 varchar。
不幸的是,如果您希望对最小/最大长度和停用词的更改应用于现有的索引行,则必须重新创建 FULLTEXT 索引。