创建索引时遇到错误
我在为表创建第一个索引时遇到了麻烦。无论我做:
ALTER TABLE table ADD INDEX(column(4));
还是
CREATE INDEX column ON table (column(20));
我得到,
错误 1210 (HY000):数据目录的参数不正确
我在表命名方面做错了什么吗?或者前缀长度?更改其中任何一个、使索引名称成为唯一名称或列名称等都不会消除错误。有些列是 VARCHAR,一个是 YEAR,并且包含文本字符串或数字(如果有帮助)。
I've been facing trouble creating a first index for my table. Whether I do:
ALTER TABLE table ADD INDEX(column(4));
or
CREATE INDEX column ON table (column(20));
I get,
ERROR 1210 (HY000): Incorrect arguments to DATA DIRECTORY
Am I doing something wrong with the naming of the table? Or the prefix length? Changing either of those, making the index name a unique name or the name of the column, etc, doesn't eliminate the error. Some of the columns are VARCHAR, one is YEAR, and contain either text strings or numbers if that helps.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论