You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
241 B
17 lines
241 B
2 years ago
|
-- Query 21
|
||
|
|
||
|
SELECT
|
||
|
serveur.villeserveur as 'ville',
|
||
|
COUNT(serveur.numserveur) as 'nb serveurs'
|
||
|
FROM
|
||
|
serveur
|
||
|
GROUP BY serveur.villeserveur;
|
||
|
|
||
|
/* == RESULT ==
|
||
|
"Ville","Nb Serveurs"
|
||
|
"BAVILLIERS",1
|
||
|
"BELFORT",2
|
||
|
"DELLE",1
|
||
|
"DIJON",1
|
||
|
*/
|