Mega Code Archive

 
Categories / MySQL / Data Type
 

Table definition includes a BLOB column named Photo

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)