MySQL FULLTEXT 索引问题
我正在尝试在表的属性上创建全文索引。 Mysql返回
错误 1214:使用的表类型不支持 FULLTEXT 索引。
知道我做错了什么吗?
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.
Any idea what I’m doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
在 MySQL 5.6 之前,MyISAM 是唯一支持全文搜索 (FTS) 的存储引擎,但 MySQL 5.6 中的 InnoDB FTS 在语法上确实与 MyISAM FTS 相同。 请阅读下文了解更多详情。
InnoDB Full- MySQL 5.6 中的文本搜索
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
在 MySQL <= 5.5 上,mysql 手册表示只能在具有 mylsam 引擎的表上创建
FULLTEXT
索引。On MySQL <= 5.5, the mysql manual says that
FULLTEXT
indexes can only be created on tables with the mylsam engine.你用的是InnoDB吗? 唯一支持 FULLTEXT 的表类型是 MyISAM。
Are you using InnoDB? The only table type that supports FULLTEXT is MyISAM.
除了MyISAM 表
PARTITIONING
也不支持全文
索引。apart from MyISAM table
PARTITIONING
also not supportfull-text
index.您使用了错误类型的表格。 Mysql 支持几种不同类型的表,但最常用的是 MyISAM 和 InnoDB。 MyISAM(在 MySQL 5.6+ 以及 InnoDB 表中)是表的类型Mysql 支持全文索引。
要检查表的类型,请发出以下 sql 查询:
查看查询返回的结果,在 Engine 列中找到您的表和相应的值。 如果这个值是除 MyISAM 或 InnoDB 之外的任何值,那么如果您尝试添加 FULLTEXT 索引,Mysql 将抛出错误。
要纠正此问题,您可以使用下面的 sql 查询来更改引擎类型:
附加信息(认为它可能有用):
Mysql 使用不同的引擎存储类型来针对特定表所需的功能进行优化。 示例 MyISAM 是操作系统(Windows 除外)的默认类型,可以快速执行 SELECT 和 INSERT; 但不处理交易。 InnoDB是windows默认的,可以用于事务。 但InnoDB确实需要服务器上更多的磁盘空间。
You’re using the wrong type of table. Mysql supports a few different types of tables, but the most commonly used are MyISAM and InnoDB. MyISAM (in MySQL 5.6+also InnoDB tables) are the types of tables that Mysql supports for Full-text indexes.
To check your table’s type issue the following sql query:
Looking at the result returned by the query, find your table and corresponding value in the Engine column. If this value is anything except MyISAM or InnoDB then Mysql will throw an error if your trying to add FULLTEXT indexes.
To correct this, you can use the sql query below to change the engine type:
Additional information (thought it might be useful):
Mysql using different engine storage types to optimize for the needed functionality of specific tables. Example MyISAM is the default type for operating systems (besides windows), preforms SELECTs and INSERTs quickly; but does not handle transactions. InnoDB is the default for windows, can be used for transactions. But InnoDB does require more disk space on the server.