Data Type MySQL

mysql>
mysql>
mysql> CREATE TABLE Inventory
    -> (
    ->     ProductID SMALLINT(4) UNSIGNED ZEROFILL,
    ->     Quantity INT UNSIGNED
    -> );
mysql>
mysql> drop table Inventory;
Query OK, 0 rows affected (0.00 sec)