i just want to know what is the benefit/usage of using ZEROFILL for INT datatype in mysql

link|improve this question

feedback

5 Answers

up vote 19 down vote accepted

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:

CREATE TABLE yourtable (x INT(8) ZEROFILL NOT NULL, y INT(8) NOT NULL);
INSERT INTO yourtable (x,y) VALUES
(1, 1),
(12, 12),
(123, 123),
(123456789, 123456789);
SELECT x, y FROM yourtable;

Result:

        x          y
 00000001          1
 00000012         12
 00000123        123
123456789  123456789
link|improve this answer
2  
+1 for "has no effect on how the data is stored". – Thilo Mar 10 '11 at 7:16
then what is usage? you just explain how it works – diEcho Mar 10 '11 at 7:16
5  
@diEcho: If for example you want all your invoice numbers to be displayed with 10 digits then you can declare the type of that column as INT(10) ZEROFILL. – Mark Byers Mar 10 '11 at 7:21
feedback

It's a feature for disturbed personalities who like square boxes.

You insert

1
23
123 

and it stores

000001
000023
000123
link|improve this answer
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

23

becomes:

00000023
link|improve this answer
feedback

When used in conjunction with the optional (nonstandard) attribute ZEROFILL, the default padding of spaces is replaced with zeros. For example, for a column declared as INT(4) ZEROFILL, a value of 5 is retrieved as 0005.

http://dev.mysql.com/doc/refman/5.0/en/numeric-types.html

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.