#VARCHAR单表单字段最长不能超过21844 CREATE TABLE test( va VARCHAR(21845) )DEFAULT CHARSET=utf8; [Err] 1118 - Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs #这样就可以了 CREATE TABLE test( va VARCHAR(21844) )DEFAULT CHARSET=utf8; 受影响的行: 0 时间: 0.155s #虽然每个BLOB和TEXT列 账户只占其中的5至9个字节。但是还不够 CREATE TABLE test( va VARCHAR(21841), tx text )DEFAULT CHARSET=utf8; [Err] 1118 - Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs #然后9+2就可以了 CREATE TABLE test( va VARCHAR(21840), tx text )DEFAULT CHARSET=utf8; 受影响的行: 0 时间: 0.170s --------------------------------------------------------