MySQL导入数据库1118错误解决方案[ERR] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB
MySQL导入数据库1118错误解决方案[ERR] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB
编辑sql文件,在开头设置一下innodb_strict_mode为0
SET innodb_strict_mode = 0;
或者找到mysql配置文件mysql.ini
innodb_strict_mode=0
// 可通过show variables like '%innodb_strict_mode%';命令查看
本文来自博客园,作者:颖小主,转载请注明原文链接:https://www.cnblogs.com/yingxiaozhu/p/17272476.html