mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | test | | video | +--------------------+ 7 rows in set (0.00 sec) mysql> use video Database changed mysql> show tables; +---------------------------+ | Tables_in_video | +---------------------------+ | attori | +---------------------------+ 1 rows in set (0.00 sec) mysql> show fields from attori; +--------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------+--------------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | Attore | varchar(255) | NO | | NULL | | | foto | longblob | YES | | NULL | | +--------+--------------+------+-----+---------+----------------+ 3 rows in set (0.00 sec) mysql> describe attori; +--------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +--------+--------------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | Attore | varchar(255) | NO | | NULL | | | foto | longblob | YES | | NULL | | +--------+--------------+------+-----+---------+----------------+ 3 rows in set (0.00 sec) mysql> describe attori id; +-------+---------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------+---------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | +-------+---------+------+-----+---------+----------------+ 1 row in set (0.00 sec) mysql>