为了介绍这个问题,mysql doc读取:
quoted strings in Match/Against clause
are Case Sensitive…
我的资料:
INSERT INTO table.col VALUES ('this is a custom phrase to match');
我的查询:
SELECT * FROM table
WHERE MATCH ( col1,..,col10 ) AGAINST ('"Custom Phrase"' IN BOOLEAN MODE)
由于大小写原因,这不匹配.
这些词组都将与数据匹配的事物:
>“自定义短语”
>“自定义词组”
>“自定义短语”
>“ CuStOm PhRAsE”
欢迎任何帮助,提前谢谢^^
解决方法:
阅读本文的结尾(http://bugs.MysqL.com/bug.PHP?id=22343),这表明这是设计使然,因为您混合使用了不同的列类型.