I have this column that\'s INT(10) ZEROFILL NOT NULL DEFAULT \'0000000000\',
INT(10) ZEROFILL NOT NULL DEFAULT \'0000000000\',
But when I insert something like 9100000010, I get 42949
9100000010
42949
you reached the maximum for int. The int maximum value range for int in mysql is 4294967295 (unsigned). So you have to use BIGINT. You can get more informations about this here: Mysql Numeric types
Hope this helps
Kind Regards