MySQL FULLTEXT indexes issue

后端 未结 5 2153
予麋鹿
予麋鹿 2020-12-08 14:10

I’m trying to create a FULLTEXT index on an attribute of a table. Mysql returns

ERROR 1214: The used table type doesn’t support FULLTEXT indexes.

5条回答
  •  眼角桃花
    2020-12-08 15:08

    Up until MySQL 5.6, MyISAM was the only storage engine with support for full-text search (FTS) but it is true that InnoDB FTS in MySQL 5.6 is syntactically identical to MyISAM FTS. Please read below for more details.

    InnoDB Full-text Search in MySQL 5.6

提交回复
热议问题