I am trying to use the following query to get the most recent result by date.
Cursor cursor = mDb.query(DATABASE_TABLE, new String[] {KEY_DATE, KEY_REPS, KE
Order by id DESC Limit 1:
Order by id DESC Limit 1
db.query("table", null, "column=?", new String[]{"value"}, null, null, "id DESC", "1");