我的数据库中有一个user的表,
有一项为content并对其进行全文搜索,
有一行的content内容为“I feel very happy.”,
但我使用语句 :select * from user where match(content) against('very'),却返回空。
而我用:select * from user where match(content) against('feel')却可以得到结果。
请问这是为啥啊?补充:very这个词只在这一行出现过。