Fulltext search on mysql with a 3 letter word

后端 未结 2 541
死守一世寂寞
死守一世寂寞 2021-01-17 22:56

I\'m trying to find \"the zen\" string in a field containing \"The Zen Circus\". I\'ve got a FULLTEXT index.

select url,name,
,   MATCH(name) AGAINST ( \'zen         


        
2条回答
  •  余生分开走
    2021-01-17 23:29

    Kao is right but that didn't help me at all - why? InnoDB table uses a different setting - try updating this one and checking it with:

        show variables like 'innodb_ft_min_token_size';
    

提交回复
热议问题