I have a table such has
identifier date value
A 2017-01-01 2
A 2017-01-02 1
A 2017-01-03 7
B 2017-01-01 2
B 2017-01-02 7
B 2017-01-03 3
I am trying to select the max date of each identifier such as I get :
identifier date value
A 2017-01-03 7
B 2017-01-03 3
thank you