Base de Datos de 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 IDT ON Telefonos(Id);
CREATE INDEX IDE ON E_Mails(Id);