Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-Fehler:Die maximale Spaltengröße beträgt 767 Bytes

Mit Hilfe der Antwort von BK435 habe ich Folgendes getan und das Problem gelöst.

set global innodb_file_format = BARRACUDA;
set global innodb_large_prefix = ON;
create table test (........) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;