码迷,mamicode.com
首页 > 其他好文 > 详细

处理unsigned想减错误(BIGINT UNSIGNED value is out of range)

时间:2016-09-28 15:34:17      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

mysql 当两个字段想减时,如果其中一个或两个字段的类型的unsigned无签名类型,如果想减的值小于0则会报错(BIGINT UNSIGNED value is out of range)

 

测试:

select cast(1 as unsigned)-2

select 0-cast(1 as unsigned)

 

解决办法:

一、修改字段类型

二、使用cast函数转字段为signed类型

select cast(1 as signed)-2

处理unsigned想减错误(BIGINT UNSIGNED value is out of range)

标签:

原文地址:http://www.cnblogs.com/tujia/p/5916202.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!