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

Posted Tiac

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了处理unsigned想减错误(BIGINT UNSIGNED value is out of range)相关的知识,希望对你有一定的参考价值。

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)的主要内容,如果未能解决你的问题,请参考以下文章

mysql bigint与bigint unsigned

小5聊Mysql基础之bigint和bigint unsigned的区别

MySQL整数数据类型bigint

Mysql Query error: BIGINT UNSIGNED value is out of range in..解决方法

mysql 中unsigned

带有 unsigned char * 的内存泄漏