Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 16, 2019 02:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/6ba713b41dbd1de947b2905630c18c91 to your computer and use it in GitHub Desktop.
Save parzibyte/6ba713b41dbd1de947b2905630c18c91 to your computer and use it in GitHub Desktop.
create table if not exists alumnos(
id integer primary key autoincrement,
id_grupo integer,
nombre text not null,
direccion text not null,
foreign key(id_grupo) references grupos(id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment