According to the mySQL Docs a datatype of int (signed) has a range of -2147483648 to 2147483647. When I create a table with phpMyAdmin, and export the table structure it shows the following:
`unit_id` int(11) NOT NULL
Why the (11)? Doesn’t int tell mySQL everything it needs to know?
This is the optional ‘width’ attribute, which can be used by applications to display the value.
To quote the documentation: