我如何计算我的用户,并在我去的时候总结它们?

时间:2013-10-29 11:05:51

标签: sql sql-server

我想创建一个显示用户随时间增长的图表,那么我可以在SQL中按年,月和日计算我的用户并总结以前的计数吗?

For instance:
4/1/2013 - 1
4/2/2013 - 2
4/4/2013 - 1
4/9/2013 - 4

Want the result:
4/1/2013 - 1
4/2/2013 - 3
4/4/2013 - 5
4/9/2013 - 9

1 个答案:

答案 0 :(得分:1)

select a.date1,sum(b.id) as Mark
from tab a cross join tab b
where b.id <= a.id
group by a.id,a.date1