MEDIUMBLOB Binary data with variable length, maximum 2^24-1 bytes : MediumBlob « Data Type « SQL / MySQL






MEDIUMBLOB Binary data with variable length, maximum 2^24-1 bytes

 
mysql>
mysql>
mysql> CREATE TABLE employee(
    ->     id INT,
    ->     eName VARCHAR(10),
    ->     photo MEDIUMBLOB
    -> );
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