BIGINT UNSIGNED VALUE IS out of range My SQL

后端 未结 9 861
一向
一向 2020-12-18 19:11

I\'m getting the following error

#1690 - BIGINT UNSIGNED value is out of range in \'(legends.spawns.quantity -

9条回答
  •  情书的邮戳
    2020-12-18 19:46

    I actualy found that question why I was searching for solution. If you have same problem as I do, try disabling "unsigned" parameter.

    It is quite possible that your code fails here:

    (
    quantity - COUNT( game_moblist.spawn_id )
    )
    

    because if result of that matematic operation is less than zero it will fail with "unsigned" parameter.

提交回复
热议问题