The problem was that I changed the column's length only in the program.I had to do either change the length of the column in the database table or delete the table(The new table created will have the correct length specified in the program.…
今天下午,我们的一个开发来找我,说线上有个环境报了"Warning(1265)Data truncated for column 'column_name' at row 1",定义的字段长度decimal(32,4),实际的小数点有超过4位的,但是大部分的账户登录查询的时候都没有问题,已知的就一个账户进行查询的时候会出现这个问题,看数据没有什么特别异常的. 于是,过去协助排查,临时拷贝了个存储过程,还真蹊跷,查询其他数据都没有问题,但是一到这一条记录就报错,在update报错的语句前…
版权声明:声明:本文档能够转载,须署名原作者. 作者:无为 qq:490073687 周祥兴 zhou.xiangxing210@163.com https://blog.csdn.net/Rookie_CEO/article/details/32075225 昨天在存储过程中用了语句insert into a select from b.在应用中发现bigint字段插入到int字段的时候,数值被截断了.插入后已经不是所要的值. 由于存储过程中没实用到异常捕捉的处理.所以一開始并未发现错误.仅仅…