MySQL: Something wrong with Fulltext search - Returning NO results

后端 未结 3 1874
忘掉有多难
忘掉有多难 2020-12-20 14:57

I have a table places(name vachar(50), address text, description text) engine = MYISAM and few records.

I have been trying to do some example in here!,

3条回答
  •  再見小時候
    2020-12-20 15:05

    Ensure that your key word is not a stop word. To disable or modify the stop word list, you'll need access to set system variables and restart the server.

    Also, ensure that your key word meets the minimum full text word length. The default minimum length is 4.

    Finally, ensure that the word appears in less than 50% of the records. MySQL won't return results where the word appears in 50% or more of the records.

提交回复
热议问题