Try to update the score field in my dashboard but send me an error:
code: 1093 You can not specify target table 'partitioned' for update in FROM clause
I leave my sentence
use noble;
update dpartida
set score=1
where idpartida=
(select p.idpartida from dpartida p
inner join dpersona m on p.idpartida=m.idpartida
inner join musuario u on m.idpersona = u.idpersona where u.nomusuario="qwe");
Please help me.