A family of Microsoft relational database management systems designed for ease of use.
I'd recommend that you follow Imb's advice and use a short text data type for this column. Numeric data types are best reserved for attributes which have an ordinal or cardinal significance, or, in the case of an autonumber, as a distinct row identifier, usually designated as the primary key of the table.
Bar codes and the like are not really numbers per se, but encoding systems (Joe Celko has a whole chapter on these in one of his books, 'Data and Databases: Concepts in Practice' if I remember rightly). One problem often encountered with these is that a numeric data type cannot store leading zeros, although it cannot be formatted as such. When using the 'number' therefore, it is necessary to call the Format function. By using a text data type this is unnecessary.