i just want to know what is the benefit/usage of using ZEROFILL for INT datatype in mysql
| |||
|
feedback
|
|
When you select a column with type ZEROFILL it pads the displayed value of the field with zeros up to the display width specified in the column definition. Values longer than the display width are not truncated. Note that usage of ZEROFILL also implies UNSIGNED. Using ZEROFILL and a display width has no effect on how the data is stored. It affects only how it is displayed. Here is some example SQL that demonstrates the use of ZEROFILL:
Result:
| |||||||||||
feedback
|
|
It's a feature for disturbed personalities who like square boxes. You insert
and it stores
| |||
|
feedback
|
|
ZEROFILL This essentially means that if the integer value 23 is inserted into an INT column with the width of 8 then the rest of the available position will be automatically padded with zeros. Hence
becomes:
| |||
|
feedback
|
| |||
|
feedback
|
|
If you specify ZEROFILL for a numeric column, MySQL automatically adds the UNSIGNED attribute to the column. Numeric data types that permit the UNSIGNED attribute also permit SIGNED. However, these data types are signed by default, so the SIGNED attribute has no effect. Above description is taken from MYSQL official website. | |||
|
feedback
|