gpt4 book ai didi

mysql - mysql中按日期移动平均

转载 作者:行者123 更新时间:2023-11-29 22:55:06 24 4
gpt4 key购买 nike

我想检索 cosumes 表的移动平均值。我已经编写了以下查询,但它不起作用。它在第一天检索到更高的平均值。我做错了什么?

select c.fecha, count(r.cantidad), avg(r.cantidad)
from
(select distinct fecha
from tb_consumos
where fecha > '2015-02-01') c, tb_consumos r
where datediff(c.fecha, r.fecha)<10
group by c.fecha

最佳答案

试试这个:

select distinct c.fecha, count(r.cantidad), avg(r.cantidad)
from tb_consumos c, tb_consumos r
where datediff(c.fecha, r.fecha)<10
and c.fecha > '2015-02-01'
group by c.fecha

关于mysql - mysql中按日期移动平均,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28743180/

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