Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

ordem mysql e groupby


tente isso, eu não verifiquei isso, mas deve funcionar
select object_id, status_id, MAX(created)
from ff
group by object_id having created = MAX(created)

a chave é usar having função que escolherá o último item para cada objeto agrupado

EDITAR:

Eu adicionei status_id selecionar;)