mirror of
https://github.com/ArthurDanjou/ArtStudies.git
synced 2026-01-30 19:28:41 +01:00
Correction de la requête SQL pour supprimer le GROUP BY dans la sélection du prix minimum dans DANJOU_Arthur.sql
This commit is contained in:
@@ -73,7 +73,7 @@ INSERT INTO Inscription(IDIns, IDConf, IDOr, DateIns) VALUES (15, 5, 6, '2025-01
|
|||||||
INSERT INTO Inscription(IDIns, IDConf, IDOr, DateIns) VALUES (16, 1, 6, '2025-01-10');
|
INSERT INTO Inscription(IDIns, IDConf, IDOr, DateIns) VALUES (16, 1, 6, '2025-01-10');
|
||||||
|
|
||||||
-- Question 1.1
|
-- Question 1.1
|
||||||
SELECT Titre, MIN(Prix) AS 'Prix Minimum' FROM Conference GROUP BY Titre;
|
SELECT Titre, MIN(Prix) AS 'Prix Minimum' FROM Conference;
|
||||||
|
|
||||||
-- Question 1.2
|
-- Question 1.2
|
||||||
SELECT c.Titre FROM Conference c
|
SELECT c.Titre FROM Conference c
|
||||||
|
|||||||
Reference in New Issue
Block a user