Não, não há nada chamado LAST no mysql
Veja a lista de função agregada
EDITAR
Você pode executar o mesmo algo assim
select f.user_id, f.value
from (
select MAX(value) as maxval
from my_table group by user_id
) as x inner join my_table as f on f.value = x.maxval