当前位置:   article > 正文

MySQL报错:Data too long for column_data too long for column 'strsubids' at row 9995

data too long for column 'strsubids' at row 9995

异常信息如下:

nested exception is com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'xxx' at row 

此原因是字段的最大容量小于实际数据的容量导致,但我字段选取的是text,本以为可不限长度,谁知都是假象。原来text类型也是有长度的。

  1. TINYTEXT 256 bytes
  2. TEXT 65,535 bytes ~64kb
  3. MEDIUMTEXT 16,777,215 bytes ~16MB
  4. LONGTEXT 4,294,967,295 bytes ~4GB

这大概是文本类型大概的容量。按照实际情况选取即可。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/278678
推荐阅读
相关标签
  

闽ICP备14008679号