Nie, w mysql nie ma nic o nazwie OSTATNI
Zobacz listę funkcji agregowanej
EDYTUJ
Możesz wykonać to samo, coś takiego
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