TINYBLOB: Binary data with variable length, maximum 255 bytes : TinyBlob « Data Type « SQL / MySQL






TINYBLOB: Binary data with variable length, maximum 255 bytes

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

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

mysql>

   
  








Related examples in the same category