MySQL FULLTEXT 索引问题

发布于 2024-07-23 14:30:03 字数 127 浏览 10 评论 0原文

我正在尝试在表的属性上创建全文索引。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

嘿嘿嘿 2024-07-30 14:30:04

在 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

只有一腔孤勇 2024-07-30 14:30:04

在 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.

停滞 2024-07-30 14:30:04

你用的是InnoDB吗? 唯一支持 FULLTEXT 的表类型是 MyISAM。

Are you using InnoDB? The only table type that supports FULLTEXT is MyISAM.

另类 2024-07-30 14:30:04

除了MyISAM 表PARTITIONING 也不支持全文 索引。

apart from MyISAM table PARTITIONING also not support full-text index.

柳若烟 2024-07-30 14:30:03

您使用了错误类型的表格。 Mysql 支持几种不同类型的表,但最常用的是 MyISAM 和 InnoDB。 MyISAM(在 MySQL 5.6+ 以及 InnoDB 表中)是表的类型Mysql 支持全文索引。

要检查表的类型,请发出以下 sql 查询:

SHOW TABLE STATUS

查看查询返回的结果,在 Engine 列中找到您的表和相应的值。 如果这个值是除 MyISAM 或 InnoDB 之外的任何值,那么如果您尝试添加 FULLTEXT 索引,Mysql 将抛出错误。

要纠正此问题,您可以使用下面的 sql 查询来更改引擎类型:

ALTER TABLE <table name> ENGINE = [MYISAM | INNODB]

附加信息(认为它可能有用):
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:

SHOW TABLE STATUS

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:

ALTER TABLE <table name> ENGINE = [MYISAM | INNODB]

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文