Can't Find Fulltext Index Matching the Column List (Indexes Is Set)

Can't find FULLTEXT index matching the column list (indexes is set)

Assuming you are using MyISAM engine, Execute:

ALTER TABLE products ADD FULLTEXT(brand);

The fulltext index should contain exactly the same number of columns, in same order as mentioned in MATCH clause.

Innodb: Can't find FULLTEXT index matching the column list when queried more than 1 columns

You need a third index:

FULLTEXT(item_title, item_description)

SQL Error: 1191 - Can't find FULLTEXT index matching the column list

ALTER TABLE table ADD FULLTEXT index_name(column1);

Try this to add a full text index.



Related Topics



Leave a reply



Submit