diff --git a/Notebooks/DB_4_disquaire.ipynb b/Notebooks/DB_4_disquaire.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..e2821fd32d0fd66514662742812268a788780adc
--- /dev/null
+++ b/Notebooks/DB_4_disquaire.ipynb
@@ -0,0 +1 @@
+{"cells":[{"metadata":{},"cell_type":"markdown","source":"<div style=\"padding:20px;background-color:papayawhip;\" > \n<h3 style=\"color:chocolate\"> <i class=\"fa fa-info\" aria-hidden=\"true\"> </i> &nbsp; Lisez bien les consignes ! &nbsp;  <i class=\"fa fa-info\" aria-hidden=\"true\"></h3> \n\n<p>\n    \n1) Commencer par Exécuter la cellule suivante (la base de donnée ci-dessous) afin de la charger.\n\n2) Créer les requêtes SQL pour chaque question en vous aidant de votre mémo SQL.\n\n3) Enregistrez votre travail avec le bouton  <i class=\"fa fa-floppy-o\" aria-hidden=\"true\"> </i> et déposez-le dans la zone Rendu (raccourci sur le bureau) spécifié par votre enseignant. \n</p> \n</div>"},{"metadata":{},"cell_type":"markdown","source":"# Présentation de la base de données \"Médiathèque Musicale\"\n\n## 📌 Introduction\nCette base de données est conçue pour gérer une médiathèque musicale où des clients peuvent emprunter des albums. Elle contient des informations sur les albums, les artistes, les clients et les emprunts réalisés.\n\n## 📂 Structure de la Base\nLa base est composée de plusieurs tables principales :\n\n- **Album** : Contient les albums disponibles, leur titre, leur année de sortie et leur disponibilité.\n- **Artiste** : Répertorie les artistes avec leur nom et prénom.\n- **Artiste_de** : Associe les albums à leurs artistes (relation plusieurs-à-plusieurs).\n- **Client** : Stocke les informations des clients (nom, prénom, email).\n- **Emprunt** : Enregistre les albums empruntés par les clients avec la date d'emprunt.\n\n## 🔗 Relations entre les tables\n- Un **album** peut être associé à plusieurs **artistes** via la table `Artiste_de`.\n- Un **client** peut emprunter plusieurs **albums**, et un **album** peut être emprunté par plusieurs **clients** via la table `Emprunt`. \n\n![Image d'une fleur](https://gitedu.hesge.ch/info_sismondi/activites-2in-do/-/raw/main/Notebooks/schema_relationnel_simple.png?ref_type=heads&inline=false)"},{"metadata":{"trusted":false},"cell_type":"code","source":"CREATE TABLE Album(\n    id_album INTEGER PRIMARY KEY AUTOINCREMENT,\n    titre VARCHAR(100), \n    annee INT, \n    dispo INT\n);\n\n\nCREATE TABLE Artiste(\n    id_artiste INTEGER PRIMARY KEY AUTOINCREMENT,\n    nom VARCHAR(100),\n    prenom VARCHAR(100)\n);\n\n\nCREATE TABLE Artiste_de(\n    id_artiste INT REFERENCES Artiste(id_artiste),\n    id_album INT REFERENCES Album(id_album),\n    PRIMARY KEY (id_artiste, id_album)\n);\n    \n\nCREATE TABLE Client(\n    id_client INTEGER PRIMARY KEY AUTOINCREMENT, \n    nom VARCHAR(100), \n    prenom VARCHAR(100), \n    email VARCHAR(100)\n);\n\n\nCREATE TABLE Emprunt(\n    id_client INT REFERENCES Client(id_client),\n    id_album INT REFERENCES Album(id_album),\n    jour DATE, \n    PRIMARY KEY (id_client, id_album)\n);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (1,'Blues Breakers',1966,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (2,'I Still Do',2016,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (3,'Aftermath',1966,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (4,'Off the Wall',1979,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (5,'Axis : Bold As Love',1967,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (6,'Thriller',1982,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (7,'Black and Blue',1976,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (8,'Riding With The King',2000,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (9,'Bad',1987,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (10,'It''s Only Rock''n Roll',1974,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (11,'Don''t Explain',2011,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (12,'Aretha',1980,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (13,'Abbey Road',1969,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (14,'Let It Be',1970,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (15,'44/876',2018,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (16,'Lady Soul',1968,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (17,'Back in Black',1980,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (18,'Sacred Love',2003,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (19,'Songs in the Key of Life',1976,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (20,'Power Up',2020,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (21,'The Last Ship',2013,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (22,'Signed, Sealed & Delivered',1970,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (23,'Fire on the Floor',2016,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (24,'Continus time',2005,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (25,'Continuum',2006,0);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (26,'Exodus',1977,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (27,'Sex Machine',1970,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (28,'T.N.T.',1975,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (29,'Leave the Light On',2003,1);\nINSERT INTO \"Album\" (\"id_album\",\"titre\",\"annee\",\"dispo\") VALUES (30,'Blues Deluxe',2003,1);\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (1,'Clapton','Éric');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (2,'Mayall','John');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (3,'Hendrix','Jimi');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (4,'Mayer','John');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (5,'The Rolling Stones',NULL);\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (6,'Hart','Beth');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (7,'Jackson','Michael');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (8,'B.B. King',NULL);\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (9,'Franklin','Aretha');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (10,'The Beatles',NULL);\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (11,'Sting',NULL);\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (12,'Shaggy',NULL);\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (13,'AC/DC',NULL);\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (14,'Wonder','Stevie');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (15,'Bonamassa','Joe');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (16,'Marley','Bob');\nINSERT INTO \"Artiste\" (\"id_artiste\",\"nom\",\"prenom\") VALUES (17,'Brown','James');\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (1,1);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (1,2);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (1,8);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (2,1);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (3,5);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (4,24);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (4,25);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (5,3);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (5,7);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (5,10);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (6,11);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (6,23);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (6,29);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (7,4);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (7,6);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (7,9);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (8,8);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (9,12);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (9,16);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (10,13);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (10,14);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (11,15);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (11,18);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (11,21);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (12,15);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (13,17);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (13,20);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (13,28);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (14,19);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (14,22);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (15,11);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (15,30);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (16,26);\nINSERT INTO \"Artiste_de\" (\"id_artiste\",\"id_album\") VALUES (17,27);\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (1,'Dupont','Florine','dupont.florine@domaine.net');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (2,'Dupont','Michel','dupont.michel@domaine.net');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (3,'Marchand','Grégoire','greg.marchand49@music.com');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (4,'Michel','Valérie','vmichel5@monmail.com');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (5,'Pacot','Jean','jpacot@music.com');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (6,'Durand','Julien','jdurand9@email.fr');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (7,'Moreau','Alain','amoreau1@abc.de');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (8,'Rouger','Léa','');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (9,'Dubois','Philippe','pdubois5@chezmoi.net');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (10,'Robert','Pascal','probert9@monmail.com');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (11,'Fournier','Marie','mfournier@abc.de');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (12,'Fournier','David','dfournier4@abc.de');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (13,'Lefranc','Françoise','flaurent3@monmail.com');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (14,'Simon','Sandrine','ssimon2@domaine.net');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (15,'Petit','Sébastien','spetit4@email.fr');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (16,'Bernardin','Stéphanie','sbernard1@chezmoi.net');\nINSERT INTO \"Client\" (\"id_client\",\"nom\",\"prenom\",\"email\") VALUES (17,'Petit','Morgane','morgane.petit@email.fr');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (1,5,'2021-09-10');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (3,8,'2021-08-18');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (3,24,'2021-08-18');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (5,25,'2021-09-12');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (5,6,'2021-10-10');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (9,20,'2021-09-28');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (11,14,'2021-10-08');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (7,15,'2021-10-08');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (7,19,'2021-10-08');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (7,16,'2021-10-15');\nINSERT INTO \"Emprunt\" (\"id_client\",\"id_album\",\"jour\") VALUES (16,29,'2021-10-01');                      \n\n\n","execution_count":null,"outputs":[]},{"metadata":{"trusted":true},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 1: \n    Lister les différentes années où des albums sont sortis (sans doublons). 🎤</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 2: Lister les albums du plus récent au plus ancien. 🎵 </h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 3: Lister les clients par ordre alphabétique. 📀</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 4: Trouver tous les albums sortis après 2000 qui sont disponibles🎶 </h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 5: Trouver tous les clients qui ont un email (ce qui signifie que le champ email n'est pas vide, écrire: ... <>\"\") 🎸</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{"slideshow":{"slide_type":"subslide"}},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 6: Trouver tous les albums contenant \"Rock\" dans leur titre. 🎤</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 7: Compter le nombre total d'albums dans la base. 📊</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 8: Trouver les albums de 1966 ou 1970. 🎼</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 9: Afficher uniquement le titre du plus ancien album (donc juste un titre).</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question 10: Trouver les albums sortis entre 1980 et 2000 qui sont disponibles.</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{},"cell_type":"markdown","source":"<h3 style=\"color:teal;background-color:azure;\" >Question BONUS: Trouver les clients dont le prénom commence par \"J\" et qui ont renseigné une adresse email.</h3>"},{"metadata":{"trusted":false},"cell_type":"code","source":"","execution_count":null,"outputs":[]}],"metadata":{"kernelspec":{"name":"sql","display_name":"SQL","language":"sql"}},"nbformat":4,"nbformat_minor":2}
\ No newline at end of file