( mis_contactos )
.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_EM ON E_Mails( ID );