Data Type MySQL

mysql>
mysql> CREATE TABLE Inventory
    -> (
    ->     ProductID SMALLINT UNSIGNED,
    ->     Name VARCHAR(40),
    ->     Photo BLOB,
    ->     Quantity INT UNSIGNED
    -> );
Query OK, 0 rows affected (0.01 sec)
mysql>
mysql> drop table Inventory;
Query OK, 0 rows affected (0.00 sec)