Skip to content
Snippets Groups Projects
Commit 9ffbff85 authored by DUCRUET THIBAULT p2306959's avatar DUCRUET THIBAULT p2306959
Browse files

oubli table genre Film

parent f81ae83d
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,14 @@ Create TABLE IF NOT EXISTS Personne
PRIMARY KEY (nconst)
);
Create TABLE IF NOT EXISTS genreFilm
(
idGen Int not null,
tconst varchar(20) not null,
FOREIGN KEY (idGen) REFERENCES genre(idGen),
FOREIGN KEY (tconst) REFERENCES film(tconst),
PRIMARY KEY (idGen,tconst)
);
Create TABLE if not EXISTS FilmVue
(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment