mysql的text类型Data too long

mysql的text类型Data too long

com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column ‘content’ at row 1

这个错误,指的是要存储的字段超过字段的类型最大值
数据库设计字段类型为TEXT,以为存储的字符为无限 ,实际上TEXT 是有限制的

text类型的存储限制

TEXT 65,535 bytes ~64kb
MEDIUMTEXT 16,777,215 bytes ~16Mb
LONGTEXT 4,294,967,295 bytes ~4Gb

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注