mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | automoviles | | biblioteca | | cdcol | | factura | | libreria | | mysql | | performance_schema | | phpmyadmin | | taller2 | | test | | webauth | +--------------------+ 12 rows in set (0.00 sec) mysql> use TALLER2; Database changed mysql> show tables; +-------------------+ | Tables_in_taller2 | +-------------------+ | cliente | | vendedor | +-------------------+ 2 rows in set (0.00 sec) mysql> describe VENDEDOR; +------------------------+----------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +------------------------+----------+------+-----+---------+-------+ | id_vendedor | char(10) | NO | PRI | NULL | | | nombre | char(40) | NO | | NULL | | | zona | char(15) | NO | | NULL | | | porcentaje_de_comision | float | NO | | NULL | | +------------------------+----------+------+-----+---------+-------+ 4 rows in set (0.06 sec) mysql> insert into VENDEDOR (id_vendedor,nombre,zona,porcentaje_de_comision) values ('003','Sergio Agudelo','centro',0.3); Query OK, 1 row affected (0.06 sec)