0

我想创建显示用户随时间增长的图表,那么我可以在 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
4

1 回答 1

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
于 2013-10-29T11:15:55.587 回答