TINYTEXT character string with variable length : TinyText « Data Type « SQL / MySQL






TINYTEXT character string with variable length

 
mysql> CREATE TABLE employee(
    ->     id INT,
    ->     eName VARCHAR(10),
    ->     comments TinyText
    -> );
Query OK, 0 rows affected (0.00 sec)

mysql>
mysql> drop table employee;
Query OK, 0 rows affected (0.00 sec)

   
  








Related examples in the same category