在使用mysql建立建立數據庫時提示:Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. You have to change some columns to TEXT or BLOBs.mysql
意思是字段太大了。使用text或是blobs類型的。sql
由於中文字段類型是: varchar(1000)數據庫
因此在建立英文字段的時候:varchar(2000)table
報錯的就是這個varchar(2000).sed
解決辦法:將varchar(2000)修改成 text或者blobsim