Hello,
Whats data type should i use when entering data type that would allow integers with 0 at the begining??
Kendall
MySQL Integers with '0' at begining
Moderator: General Moderators
an integer as a type does not contain leading zeroes as it is an n+ bit single whole number. Such would be at the presentation level. If for some odd reason you need to store such it must be as a string or binary type (E.g. Character Varying), likely to use more storage space than a fit-size integer...