提取由admin分组的成员和管理员的分数总和

时间:2014-09-13 15:22:00

标签: php mysql sql group-by

我有2个表:分数和用户:

user:
--------------
id | name | parent
--------------
1  | jack |0
--------------
2  | John |1
--------------
3  | Jim  |1
--------------
4  | Sara |0
--------------
5  | Ann  |4
--------------
6  | Suzi |4



score:
------------------------
id | title_id | user_id | score
------------------------
1  | 2        |0        |5
------------------------
2  | 4        |1        |4
------------------------
3  | 5        |1        |4
------------------------   

父级是一个组的管理员,我想提取每个组的总分。现在我有了这个:

select sum(score) from score left join user on user.id=score.user_id where title_id=2 and parent!=0 group by parent_id

但这只返回组成员的总和而不是组的总和。有没有更好的查询?

1 个答案:

答案 0 :(得分:0)

我认为以下查询可以满足您的需求。它使用case来区分组长和成员,因此包括所有成员(包括领导者):

select (case when u.parent_id = 0 then u.id else u.parent_id end) as grp, sum(s.score)
from user u left join
     score s
     on u.id = s.user_id and s.title_id = 2 
group by (case when u.parent_id = 0 then u.id else u.parent_id end);