Hai dei campi nominati in modo errato, ma anche se li correggi, questo è un bug in MySQL
questo non ti permetterà di farlo se non hai un database predefinito.
update test.object1 p
join (
select ur.id_object1, sum(ur.score * ur.weight) as total, count(*) as weight
from (
select lur.*
from (
select s.id_object1, s.id_object2, s.dt, s.score, 1 as weight
from test.score as s
join test.object1 as o1
using (id_object1)
where s.dt > o1.dt
order by
s.id_object1, s.id_object2, s.dt desc
) as lur
group by
lur.id_object1, lur.id_object1, date(lur.dt)
order by
lur.id_object1, lur.id_object1
) as ur
group by ur.id_object1
) as r
USING (id_object1)
SET p.total = p.total + r.total,
p.weight = p.weight + r.weight,
p.dt = now();
Il problema è specifico di UPDATE
con query a doppia nidificazione e nessun database predefinito (SELECT
o le query a nidificazione singola o il database predefinito funzionano correttamente)