From 1e1e90d9ac01468f02eb87762f35464c95f74f2b Mon Sep 17 00:00:00 2001 From: "noam.caronique" Date: Mon, 13 Oct 2025 11:32:25 +0000 Subject: [PATCH] Actualiser Exercice_SQL.sql --- Exercice_SQL.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Exercice_SQL.sql b/Exercice_SQL.sql index d3df6bc..477df5a 100644 --- a/Exercice_SQL.sql +++ b/Exercice_SQL.sql @@ -1,9 +1,10 @@ #exercice_1 + INSERT INTO Auteurs (nom, prenom) VALUES ('Dumas', 'Alexandre'); INSERT INTO Auteurs (nom, prenom) VALUES ('J.K', 'Rowling'); -INSERT INTO Livres (titre, annee_publication, auteur_id ) VALUES ('Les Trois Mousquetaires', 1844, 15); +INSERT INTO Livres (titre, annee_publication, auteur_id ) VALUES ('Les Trois Mousquetaires', 1844, 1); INSERT INTO Livres (titre, annee_publication, auteur_id ) VALUES ('Harry Potter à l\école des sorciers', 1997, 2);