java.sql.BatchUpdateException: Date truncation: Out of range value for column xxxxx

chuangzhou發表於2024-03-29

報錯:

java.sql.BatchUpdateException: Date truncation: Out of range value for column xxxxx

原因:
xxx 列 ddl 中為 stock_num(12,2)

資料庫值為0.06
需要更新為:0.06 - 0.21

就會出現該錯誤

參考:

https://www.jb51.net/article/158166.htm
https://blog.csdn.net/stone_tomcate/article/details/103470241

相關文章