首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Access >

DISTINCT 如何统计 同一时间段 不同用户 累计得分总和

2012-04-20 
DISTINCT 怎么统计 同一时间段 不同用户 累计得分总和一张表id, name,time,score1张三2012-01-12562李四20

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]

热点排行