ADD : données de test

correction_routeur^2
Victor SOULIER 1 year ago
parent 3b40d81a0d
commit 18deb474a2

@ -163,3 +163,12 @@ CREATE TABLE Partie(
INSERT INTO Jeu(nom) VALUES ('Qui-est-ce ?'),('Kahoot'), ('Pendu'); INSERT INTO Jeu(nom) VALUES ('Qui-est-ce ?'),('Kahoot'), ('Pendu');
INSERT INTO Difficulte(libelle) VALUES ('Facile'),('Intermédiaire'),('Difficile'); 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);
Loading…
Cancel
Save