其他分享
首页 > 其他分享> > > 1071 - Specified key was too long; max key length is 767 bytes

> 1071 - Specified key was too long; max key length is 767 bytes

作者:互联网

mysql

1071 - Specified key was too long; max key length is 767 bytes

原因: 字符宽度问题。 我用的utf-8 mb4

查看变量 show variables like 'innodb_large_prefix';

开关是关的。

打开:SET @@global.innodb_large_prefix=ON;
或者 : set global innodb_large_prefix=on

再看下确认一下。
在这里插入图片描述

然后再执行sql

标签:max,global,bytes,767,large,prefix,innodb,key
来源: https://blog.csdn.net/qq_39203959/article/details/119207783