MySQL报错:Specified-key-was-too-long;-max-key-length-is-767-bytes
作者:快盘下载 人气:在执行mysql脚本时;报错;Specified key was too long; max key length is 767 bytes。
解决办法;
mysql的字符集为utf8mb4
1、先检查一下数据库被限制了索引的大小
SHOW variables like ;innodb_large_prefix;;
如果查询的值是off的话,执行下面的命令
SET GLOBAL INNODB_LARGE_PREFIX = ON;
2、执行完了,还需要查看当前innodb_file_format引擎格式类型是不是BARRACUDA
SHOW variables like ‘innodb_file_format’;
如果不是的话则需要修改
SET GLOBAL innodb_file_format = BARRACUDA;
加载全部内容