ORDER BY d'une sum ?

ORDER BY d'une sum ? - SQL/NoSQL - Programmation

Marsh Posté le 02-06-2006 à 18:55:53    

bonjour,
je voulais savoir s'il etait possible de faire un ORDER BY SUM(champ)
 
exemple :  

Code :
  1. Table
  2. id :
  3. champ
  4. nb_champ
  5. SELECT id FROM table WHERE champ LIKE '%requete%' ORDER BY SUM(nb_champ) GROUP BY id


 
 
ca marche pas !!! une solution ?

Reply

Marsh Posté le 02-06-2006 à 18:55:53   

Reply

Marsh Posté le 02-06-2006 à 19:55:15    

Peut être sous cette forme :
 
SELECT id, SUM(nb_champ) AS s
FROM table
WHERE champ LIKE '%requete%'
GROUP BY id
ORDER BY s

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed