全文搜索总是 returns 空结果集
Full Text Search always returns empty result set
我有一个名为 'fact' 的 table 标题列,应该是全文索引。
首先,我添加一个全文索引:
ALTER TABLE fact ADD FULLTEXT title_fts (title)
所以,我插入行:
INSERT INTO fact (id, title) VALUES ('1', 'red blue yellow ok green grey ten first wise form');
然后我执行搜索:
select * from fact f where contains (f.title, '"red" or "blue"')
当我执行以下查询或使用 'contains' 语句的任何其他查询时,我得到空结果集:
我不得不用这个语句,不是against-match之类的。
有没有人碰巧知道为什么会这样?
谢谢。
我有一个名为 'fact' 的 table 标题列,应该是全文索引。
首先,我添加一个全文索引:
ALTER TABLE fact ADD FULLTEXT title_fts (title)
所以,我插入行:
INSERT INTO fact (id, title) VALUES ('1', 'red blue yellow ok green grey ten first wise form');
然后我执行搜索:
select * from fact f where contains (f.title, '"red" or "blue"')
当我执行以下查询或使用 'contains' 语句的任何其他查询时,我得到空结果集:
我不得不用这个语句,不是against-match之类的。 有没有人碰巧知道为什么会这样? 谢谢。