the table is:
create table test ( id string, name string, age string, modified string)
data like this:
id name age modife
try this
select id,name,age,modified from test where modified=max(modified) group by id,name