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);