#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 --------------------------------------------------------