This may look confusing, so to clarify I merged together two posts. Each one had a link at the top and bottom, so there may be confusion between the two.
Anyways, you can use the MAX aggregate on this.
Code:
SELECT parent, MAX(`timestamp`) FROM table GROUP BY parent
You can add a WHERE clause for the parent if you have a specific id to work with as well.