DISTINCT 怎么统计 同一时间段 不同用户 累计得分总和
一张表 id, name,time,score
1 张三 2012-01-12 56
2 李四 2012-01-18 80
3 张三 2012-01-25 65
4 何二 2012-01-29 59
5 张三 2012-02-15 78
如何得出
1 张三 56+65+78
2 李四 80
3 何二 59
[解决办法]
select id,name,sum(score) from tbname group by id,name
[解决办法]
select name,sum(score) from 一张表 where time between #2012-01-01# and #2012-05-01# group by name
[解决办法]
select [name],sum(score) from tt group by [name]