BIGINT UNSIGNED VALUE IS out of range My SQL

后端 未结 9 728
一向
一向 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:56

    I don’t quite understand why everyone is saying unsigned. I have a special value in sql and also reported this error. I did it by converting this value to decimal.

    cast(1000000000000000000 AS DECIMAL ( 35, 2 ))
    

提交回复
热议问题