📜  找不到与列列表匹配的 FULLTEXT 索引 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:43.639000             🧑  作者: Mango

代码示例2
This usually happens when you use.
 SELECT * FROM table_name
 WHERE MATCH(column_name) AGAINST('value');
 
Solution: 
You just need to alter your table goto indexes and add full text on the column that you are using in your query.
Just paste and change column names in your sql database.
ALTER TABLE `table_name` ADD FULLTEXT(`column_name`);
Done!