.open --new mis_contactos.db 
CREATE TABLE Contactos (id integer primary key, Nombre text, Apellido text); 
CREATE TABLE Telefonos (id integer, Tipo text, Numero text); 
CREATE TABLE E_Mails (id integer, Direccion text); 
CREATE INDEX id_tlf ON Telefonos(id); 
CREATE INDEX id_e-mails ON E_Mails(id); 
