From 18deb474a23317834930c6981c34315cf6b092aa Mon Sep 17 00:00:00 2001 From: "victor.soulier" Date: Sun, 19 Nov 2023 12:51:51 +0100 Subject: [PATCH] =?UTF-8?q?ADD=20:=20donn=C3=A9es=20de=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/src/db.sql | 9 +++++++++ 1 file changed, 9 insertions(+) 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