MagicBuzz a écrit :
Voilà, normalement, ça donne ça :
select sum(tache.duree) as duree, t.id_cat, c.id_cat, c.surcat, c.id_surcat
from tache t, categorie c
where c.surcat = '$nb2[id_surcat]'
and t.id_cat = c.id_cat
and t.date_cloture > '$mois-01 00:00:00'
and t.date_cloture < '$mois-31 23:59:59'
and t.affectee <> 8
group by t.id_cat, c.id_cat, c.surcat, c.id_surcat |
PS: la table surcat est inutile, puisque tu connais l'id_surcat, qui est dans categorie.
|