in MySQL if we create a field dataType of INT and does not specify any length/values then it automatically became int(11) and if we set the attribute UNSIGNED or UNSIGNED ZEROFILL then it turns into int(10)
Where does this length(1) goes?
|
in MySQL if we create a field dataType of Where does this length(1) goes? |
||||
|
|
|
int value can be -2147483648 these are 11 digits so default size is 11 unsigned int does not allow negative numbers so default size is 10
|
|||
|
According to the documentation, this number is merely the display width.
The default display width for an Note that you can still specify whatever display width you like. This is just the default. The use of the term "digits" in the documentation is slightly misleading here. |
|||
|
|
|
Just incase anyone doesn't quite understand Shakti's answer (as I didn't). Here's a visual representation of why:
|
|||||
|