gpt4 book ai didi

mysql - mysql 2分钟分组

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

Mysql表:

enter image description here

我想以 2 分钟为间隔计算 acceleCount 的总和。

查询:

select  time div 120000 as TwoMinutes,                 
sum(acceleCount) as Sum
from acceleTable
group by time div 120000

结果:

enter image description here

这里的 twoMinutes 列时间戳意义不大。我希望它有一个在考虑的两分钟内的时间戳。

对如何更改 sql 查询有任何想法吗?

最佳答案

通过除法、舍入和乘法使时间戳成为一个公分母:

SELECT
(ROUND(time / 120) * 120),
sum(acceleCount)
FROM acceleTable
GROUP BY (ROUND(time / 120) * 120)

关于mysql - mysql 2分钟分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25973658/

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