📅  最后修改于: 2022-03-11 14:56:43.639000             🧑  作者: Mango
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!