当我尝试以下查询时:
select co_id, Match(co_title,co_description,co_text) AGAINST ('word') from (select * from content limit 100)co
结果是: #1191 - 找不到与列列表匹配的 FULLTEXT 索引
FULLTEXT 索引设置正确:
当我尝试:
从内容中选择 co_id, Match(co_title,co_description,co_text) AGAINST ('word')
它工作正常。
为什么第一个查询不起作用?