When i try the following query:
select co_id, Match(co_title,co_description,co_text) AGAINST ('word') from (select * from content limit 100)co
the result is: #1191 -Can't find FULLTEXT index matching the column list
FULLTEXT indexes are set correctly :
when i try :
select co_id, Match(co_title,co_description,co_text) AGAINST ('word') from content
it works fine.
why the first query is not working?