sql >> Base de Datos >  >> RDS >> Mysql

Error de MySQL:el tamaño máximo de columna es de 767 bytes

Con la ayuda de la respuesta dada por BK435, hice lo siguiente y resolví el problema.

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