Actualiser Exercice_SQL.sql

This commit is contained in:
2025-10-13 11:32:25 +00:00
parent b57e4960f4
commit 1e1e90d9ac

View File

@@ -1,9 +1,10 @@
#exercice_1 #exercice_1
INSERT INTO Auteurs (nom, prenom) VALUES ('Dumas', 'Alexandre'); INSERT INTO Auteurs (nom, prenom) VALUES ('Dumas', 'Alexandre');
INSERT INTO Auteurs (nom, prenom) VALUES ('J.K', 'Rowling'); 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); INSERT INTO Livres (titre, annee_publication, auteur_id ) VALUES ('Harry Potter à l\école des sorciers', 1997, 2);