Create table: small int and unsigned int
drop table Inventory; CREATE TABLE Inventory ( ProductID SMALLINT(4) UNSIGNED ZEROFILL, Quantity INT UNSIGNED ); describe Inventory;