Aide pour requête sql avec somme
Résolu/Fermé
pcsystemd
Messages postés
702
Date d'inscription
dimanche 27 novembre 2005
Statut
Membre
Dernière intervention
6 novembre 2024
-
4 mars 2011 à 09:14
Utilisateur anonyme - 4 mars 2011 à 15:31
Utilisateur anonyme - 4 mars 2011 à 15:31
A voir également:
- Aide pour requête sql avec somme
- Formule somme excel colonne - Guide
- Somme si couleur - Guide
- Somme si date comprise entre ✓ - Forum Excel
- Sql lister les tables ✓ - Forum Programmation
- Blob sql ✓ - Forum Webmastering
1 réponse
Utilisateur anonyme
Modifié par Jeff le 5/03/2011 à 23:20
Modifié par Jeff le 5/03/2011 à 23:20
select
client.id, count(appel.id_client) as total
from
client inner join appel on client.id = appel.id_client
group by client.id
order by total desc
limit 0,10
client.id, count(appel.id_client) as total
from
client inner join appel on client.id = appel.id_client
group by client.id
order by total desc
limit 0,10
4 mars 2011 à 15:16
4 mars 2011 à 15:31