in a mysql database, how to achieve rank() function like implementation?
for example there is a table
name time description
A aa/bb/cccc desc1
A aa/bb/nnnn desc2
c aa/bb/mmm desc3
d aa/bb/ llll desc4
c aa/bb/qqq desc5
how to get unique data of A, c, d based on their most updated time?
A aa/bb/nnnn desc1
c aa/bb/qqq desc4
d aa/bb/llll desc3