Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Berechnung des gleitenden Durchschnitts von MySQL

wobei id<=14 (das ist t2.id <= t1.id wie unten gezeigt), also wenn t1 id =14 , t2 ist die kumulative ID von 1 bis 14 (wie sie jetzt ist).

Update t  join 
(
SELECT t1.id ,ifnull(t1.A/AVG(t2.A),0) C ,ifnull(t1.B/AVG(t2.B),0) D
FROM    t t1
JOIN    t t2
ON     case when t2.id < 15 then t2.id <= t1.id else t2.id=t1.id>=t1.id-2 and <=t1.id     end
group by t1.id 
) tt on(t.id = tt.id)
SET E = (tt.C + tt.D)/2;