I have a table like:
City date Person
A 2018/05/01 peter
A 2018/03/01 Jack
B 2018/02/16 TOM
C 2018/03/01 Mike
Now I want to find the earliest person for each city. The result will be
A 2018/03/01 Jack
B 2018/02/16 TOM
C 2018/03/01 Mike
How to do it?