I wanted the following query to be executed,
String selectQuery = "SELECT max(score),name FROM " + TABLE_SCORE
+" group by name";
I get my output as random values. Actually I wanted the data from the maximum values to the least. Please let me know, how to write the query.