码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-07-26 17:54:15      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:mysql range

当字段类型为 unsigned 时,使用相关结果为负值时就会报错,报错如下:

BIGINT UNSIGNED value is out of range in ..


解决方法


使用 cast() 修改字段类型为 signed

select cast(quantity as signed) - cast(frozen_quantity as signed) from ...


本文出自 “技术蓝” 博客,请务必保留此出处http://bstdn.blog.51cto.com/8667020/1951064

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

标签:mysql range

原文地址:http://bstdn.blog.51cto.com/8667020/1951064

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