Non sono un esperto di MySQL (in MS SQL potrebbe essere più semplice) e la tua domanda non mi sembra chiara, ma sembra che tu stia cercando di ottenere la media dei 5 elementi precedenti.
Se hai un ID senza spazi , è facile:
select
p.id,
(
select avg(t.deposit)
from products as t
where t.itemid = 1 and t.id >= p.id - 5 and t.id < p.id
) as avgdeposit
from products as p
where p.itemid = 1
order by p.id desc
limit 15
In caso contrario , quindi ho provato a fare questa query in questo modo
select
p.id,
(
select avg(t.deposit)
from (
select tt.deposit
from products as tt
where tt.itemid = 1 and tt.id < p.id
order by tt.id desc
limit 5
) as t
) as avgdeposit
from products as p
where p.itemid = 1
order by p.id desc
limit 15
Ma ho un'eccezione Unknown column 'p.id' in 'where clause'
. Sembra che MySQL non possa gestire 2 livelli di annidamento di sottoquery. Ma puoi ottenere 5 elementi precedenti con offset
, in questo modo:
select
p.id,
(
select avg(t.deposit)
from products as t
where t.itemid = 1 and t.id > coalesce(p.prev_id, -1) and t.id < p.id
) as avgdeposit
from
(
select
p.id,
(
select tt.id
from products as tt
where tt.itemid = 1 and tt.id <= p.id
order by tt.id desc
limit 1 offset 6
) as prev_id
from products as p
where p.itemid = 1
order by p.id desc
limit 15
) as p