diff --git a/project/src/db.sql b/project/src/db.sql index 6a626c7..c0125a1 100644 --- a/project/src/db.sql +++ b/project/src/db.sql @@ -163,3 +163,12 @@ CREATE TABLE Partie( INSERT INTO Jeu(nom) VALUES ('Qui-est-ce ?'),('Kahoot'), ('Pendu'); INSERT INTO Difficulte(libelle) VALUES ('Facile'),('Intermédiaire'),('Difficile'); + +INSERT INTO Sexe(libelle) VALUES ('Homme'),('Femme'); + +INSERT INTO Thematique(libelle) VALUES ('Nucléaire'),('Mathématiques'); + +INSERT INTO Scientifique(nom, prenom, photo, dateNaissance, descriptif, ratioTrouvee, idThematique, idDifficulte, idSexe) +VALUES + ('nom0', 'prenom0', '', CURRENT_DATE, 'desc0', 0, 1, 1, 1), + ('nom1', 'prenom1', '', CURRENT_DATE, 'desc1', 0, 2, 2, 2); \ No newline at end of file