sql >> Base de Datos >  >> RDS >> Mysql

Columna desconocida en la subconsulta mysql

No soy un experto en MySQL (en MS SQL podría ser más fácil), y su pregunta me parece un poco confusa, pero parece que está tratando de obtener un promedio de los 5 elementos anteriores.

Si tiene Id sin lagunas , es fácil:

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

Si no , luego intenté hacer esta consulta de esta manera

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

Pero tengo una excepción Unknown column 'p.id' in 'where clause' . Parece que MySQL no puede manejar 2 niveles de anidamiento de subconsultas. Pero puede obtener 5 elementos anteriores con offset , así:

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

demostración de sql fiddle