gpt4 book ai didi

mysql - 在 mysql 中检索运行总记录随时间的增长

转载 作者:可可西里 更新时间:2023-11-01 07:49:49 25 4
gpt4 key购买 nike

我有一个 Drupal 站点,它有一个跟踪用户的表。我想要做的是绘制成员随时间增长的图表。所以我想按摩 mysql 返回这样的东西:

date | # of users (total who have registered up to the given date)
1/1/2014 | 0
1/2/2014 | 2
1/3/2014 | 10

其中“# of users”是截至给定日期注册帐户的用户总数(运行总数)——而不是在特定日期注册的用户数 (这是微不足道的检索)。

我的 {users} 表的每一行都有一个 uid 列、一个 name 列和一个 created(时间戳)列。

所以我的 {users} 表中的示例记录将是:

name: John Smith
uid: 526
created: 1365844220

最佳答案

尝试:

select u.created, count(*)
from (select distinct date(created) created from `users`) u
join `users` u2 on u.created >= date(u2.created)
group by u.created

SQLFiddle here .

关于mysql - 在 mysql 中检索运行总记录随时间的增长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15951146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com