gpt4 book ai didi

mysql - 在这种情况下,是什么导致 MySQL 错误 1071( key 太长)?

转载 作者:行者123 更新时间:2023-11-30 21:37:16 25 4
gpt4 key购买 nike

我有一个用 utf8mb4 编码的下表:

CREATE TABLE IF NOT EXISTS `account` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`customer_id` INT UNSIGNED NOT NULL,
`name` VARCHAR(45) NOT NULL,
`username` VARCHAR(254) NOT NULL,
`password` CHAR(60) NOT NULL,
PRIMARY KEY (`id`),
INDEX `fk_table1_customer_idx` (`customer_id` ASC),
UNIQUE INDEX `unique_account` (`customer_id` ASC, `username` ASC),
CONSTRAINT `fk_table1_customer`
FOREIGN KEY (`customer_id`)
REFERENCES `customer` (`id`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB
ROW_FORMAT = DYNAMIC;

我需要向它添加一个 bool 列,所以我是这样做的:

ALTER TABLE `account` 
ADD COLUMN `is_customer_admin`
INT(4) NOT NULL DEFAULT 0
AFTER `customer_id`;

我还尝试专门添加一个 BOOLEAN 列而不是 INT(4)

但是,我得到了错误:

ERROR 1071 (42000): Specified key was too long; max key length is 767 bytes

第一次遇到这样的错误。我确实发现了一些关于该特定错误的问题,但是,我自己无法将其应用于我的情况。

来自 this question我知道 username 可能太长,但后来我不明白他们最初是如何创建该表的。我的查询不涉及该字段。

最佳答案

在较旧的 MySQL/MariaDB 版本中,允许的最大键(索引)长度仅为 767 字节。来自 Docs :

By default, the index key prefix length limit is 767 bytes. For example, you might hit this limit with a column prefix index of more than 255 characters on a TEXT or VARCHAR column, assuming a utf8mb3 character set and the maximum of 3 bytes for each character. When the innodb_large_prefix configuration option is enabled, the index key prefix length limit is raised to 3072 bytes for InnoDB tables that use DYNAMIC or COMPRESSED row format.

现在,您的问题进一步增加,因为您使用的是 utf8mb4 字符集。这意味着每个字符 4 个字节(而不是 3 个字节)。

`username` VARCHAR(254)

这意味着 254 * 4 = 1016 字节,这肯定超出了限制。您需要减少为 username 列指定的最大字符数。

此外,以下约束没有多大意义,因为 customer_id 已经是主键。

UNIQUE INDEX `unique_account` (`customer_id` ASC, `username` ASC)

你也可以去掉它。

关于mysql - 在这种情况下,是什么导致 MySQL 错误 1071( key 太长)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53326521/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com