当我执行以下命令时:
create table assessment (
id integer not null auto_increment unique,
assignment_weight_type tinyint not null,
description varchar(255),
end_date datetime not null,
from_grade tinyint not null,
f_id tinyint not null,
name varchar(255) not null,
start_date datetime not null,
status tinyint not null,
weight smallint,
school_id integer not null,
school_year_id integer not null,
s_id integer, primary key (id),
unique (name, school_id, school_year_id, from_grade, f_id)
) ENGINE=InnoDB;
我收到此错误消息:
Specified key was too long; max key length is 767 bytes
我正在使用utf8mb4的字符集。那我为什么收到错误信息?
答案 0 :(得分:6)
utf8mb4
每个字符最多使用四个字节,因此名称本身可以占用多达1020个字节。
答案 1 :(得分:1)
我也遇到了同样的问题,我在mysql中为这些变量设置了值,如下所示,它解决了这个问题。
1.global.innodb_large_prefix = 1
2.innodb_file_format = Barracuda
3.innodb_file_format_max =梭子鱼
答案 2 :(得分:-1)
使用此命令创建数据库。
create database <DATABASE_NAME> character set latin1;