Data Type MySQL

mysql>
The  placeholder specifies the number of characters stored.
mysql>
mysql>
mysql> CREATE TABLE Catalog
    -> (
    ->     ProductID SMALLINT,
    ->     Description VARCHAR(40),
    ->     Category CHAR(3),
    ->     Price DECIMAL(7,2)
    -> );
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> drop table Catalog;
Query OK, 0 rows affected (0.00 sec)
mysql>