I have this query that returns the last record and the last one:
SELECT Colaborador
FROM centrodb.Registolistagem
LEFT OUTER JOIN centrodb.Registolistagem2 ON centrodb.Registolistagem2.IdLista = centrodb.Registolistagem.Id
WHERE Carro = 'G3 Ala B'
ORDER BY centrodb.Registolistagem.Id DESC LIMIT 2
But now I wanted to pick up only the previous record, how can I do it?