Structure d'une requête SQL
SELECT *
FROM nom_table
WHERE condition
GROUP BY expression
ORDER BY expression;
Chaque requête doit se terminer par ;.
SELECT *
FROM nom_table
WHERE condition
GROUP BY expression
ORDER BY expression;
Chaque requête doit se terminer par ;.