Prova cosi ( non testato )

codice:
SELECT A.*, MAX( timestamp ) 
FROM `tabella` A
GROUP BY A.*
LIMIT 1
oppure cosi ( con mysql 4.1 )
codice:
SELECT *
FROM `tabella` A
where timestamp = (select MAX( timestamp ) from `tabella` )