How do I fix the 'Out of range value adjusted for column' error?

后端 未结 4 455
梦谈多话
梦谈多话 2020-12-11 14:50

I went into phpMyAdmin and changed the value for an integer(15)field to a 10-digit number, so everything should work fine. I entered the value \'4085628851\' and I am receiv

相关标签:
4条回答
  • 2020-12-11 15:20

    The value you were trying to set is too large for a signed INT field. The display width (15) does not affect the range of values that can be stored, only how the value is displayed.

    Ref: MySQL Docs on numerics

    On phone numbers - see Is it better to store telephone numbers in some canonical format or "as entered"?

    0 讨论(0)
  • 2020-12-11 15:26

    Best option for storing an integer of value bigger than 2147483647 would be to make the field type as BIGINT.

    If it is for storing phone number, then way better is to store the value as a text field.

    0 讨论(0)
  • 2020-12-11 15:28

    you can try not giving the value that starts with'0'. If you want to begin the values with zero, then use varchar datatype

    0 讨论(0)
  • 2020-12-11 15:35

    I just changed the field type to BIGINT, and that fixed the problem. I guess i cant enter a value above 2147483647 for an INT, so I assume everyone who uses a field to enter a 10-digit phone number uses a BIGINT?

    0 讨论(0)
提交回复
热议问题