基本上我有一个类似的表:
time.....activities.....length
13:00........3.............1
13:15........2.............2
13:00........3.............2
13:30........1.............1
13:45........2.............3
13:15........5.............1
13:45........1.............3
13:15........3.............1
13:45........3.............2
13:45........1.............1
13:15........3.............3
几点注意事项:
- 活动可以在 1 到 5 之间
- 长度可以在 1 到 3 之间
查询应返回:
time........count
13:00.........2
13:15.........2
13:30.........0
13:45.........1
基本上对于每个唯一时间,我都想要计算活动值为 3 的行数。
那么我可以说:
At 13:00 there were X amount of activity 3s.
At 13:45 there were Y amount of activity 3s.
然后我想计算活动 1s、2s、4s 和 5s。所以我可以绘制每个独特时间的分布。