Dans le troisième et quatrième chapitres du cours, nous avons abordé les concepts suivants :
Sélections
1SELECT colonne1, colonne2, ...2FROM table3WHERE condition4GROUP BY colonne5HAVING condition6ORDER BY colonne7LIMIT n
Sous-requêtes
1SELECT colonne1, colonne2, ...2FROM table3WHERE colonne IN (SELECT colonne FROM table WHERE condition)
EXISTS
1SELECT colonne1, colonne2, ...2FROM table13WHERE EXISTS (SELECT colonne FROM table2 WHERE condition)
Jointures
1SELECT colonne1, colonne2, ...2FROM table13JOIN table2 ON table1.colonne = table2.colonne
ou
1SELECT colonne1, colonne2, ...2FROM table1, table23WHERE table1.colonne = table2.colonne
Auto-jointures
Aussi appelées jointures cycliques ou jointures de soi-même
Soit la table Employes
:
1CREATE TABLE Employes (2 idEmploye INT PRIMARY KEY,3 nomEmploye TEXT,4 idSuperviseur INT,5 FOREIGN KEY (idSuperviseur) REFERENCES Employes(idEmploye)6);
Pour obtenir le nom de l’employé et le nom de son superviseur :
1SELECT e1.nomEmploye AS 'employe', e2.nomEmploye AS 'superviseur'2FROM Employes e13JOIN Employes e2 ON e1.idSuperviseur = e2.idEmploye
ou
1SELECT e1.nomEmploye AS 'employe', e2.nomEmploye AS 'superviseur'2FROM Employes e1, Employes e23WHERE e1.idSuperviseur = e2.idEmploye
Agrégations
1SELECT fonction(colonne)2FROM table3GROUP BY colonne4HAVING condition
Fonctions agrégatives : COUNT
, SUM
, AVG
, MIN
, MAX
Unions et intersections
1SELECT colonne1, colonne2, ...2FROM table13UNION4SELECT colonne1, colonne2, ...5FROM table2
ou
1SELECT colonne1, colonne2, ...2FROM table13INTERSECT4SELECT colonne1, colonne2, ...5FROM table2