i just want to know what is the benefit/usage of using ZEROFILL for INT dataType in MySQL
|
|
||||
|
|
|
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:
|
|||||||||
|
|
One example in order to understand, where the usage of ZEROFILL might be intersting: In Germany, we have 5 digit zipcodes. However, those Codes may start with a Zero, so 80337 is a valid zipcode for munic, 01067 is a zipcode of Berlin. As you see, any German citizen expects the zipcodes to be displayed as a 5 digit code, so 1067 looks strange. In order to store those data, you could use a VARCHAR(5) or INT(5) ZEROFILL whereas the zerofilled integer has two big advantages:
Maybe this example helps understanding the use of ZEROFILL. |
|||||
|
|
It's a feature for disturbed personalities who like square boxes. You insert
but when you select, it pads the values
|
||||
|
|
|
I know I'm late to the party but I find the zerofill is helpful for boolean representations of TINYINT(1). Null doesn't always mean False, sometimes you don't want it to. By zerofilling a tinyint, you're effectively converting those values to INT and removing any confusion ur application may have upon interaction. Your application can then treat those values in a manner similar to the primitive datatype True = Not(0) |
|||||||||
|
|
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:
|
|||
|
|
|
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. |
|||
|
|
|
|||
|
|