What is the most efficient method of showing my data in descending order?
public String getRank() { String[] rank = new String[]{ KEY_ROWID }; Curso
Cursor c = myDB.rawQuery("SELECT distinct p_name,p_price FROM products order by Id desc",new String[]{});
this works for me!!!