Home  >  Article  >  Database  >  MySQL BIGINT UNSIGNED valueis out of range...的问题和解决_MySQL

MySQL BIGINT UNSIGNED valueis out of range...的问题和解决_MySQL

WBOY
WBOYOriginal
2016-06-01 12:58:463462browse

MySQL处理两个整数(INT)相减的时候,如果其中有一个是UNSIGNED INT类型的,那么结果就被当做是UNSIGNED的。

如果相减的结果是负数:

在MySQL 5.5.5之前,结果变成了最大的整数(18446744073709551615)

从MySQL 5.5.5开始,这种情况会返回一个错误:BIGINT UNSIGNED value is out of range... 比如: 如果结果为负数: [SQL] SELECT (CAST(0 AS UNSIGNED)-1); [Err] 1690 - BIGINT UNSIGNED value is out of range in '(cast(0 as unsigned) - 1)'
[SQL] SELECT (1-CAST(2 AS UNSIGNED)); [Err] 1690 - BIGINT UNSIGNED value is out of range in '(1 - cast(2 as unsigned))'
如果结果为正数: [SQL] SELECT (1-CAST(0 AS UNSIGNED)); 1

解决方法: 1、如果确实可以接受负数的结果,那么把其中的UNSIGNED字段强转为SIGNED类型: [SQL] SELECT (1-CAST(2 AS SIGNED)); -1

如果计算结果是要插入到另外一个UNSIGNED INT字段中的话,那么就不要强转了,直接捕捉并报告异常。

 


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn