Spróbuj tego zapytania, to jest proste i działa na mnie dobrze.
public void clearExceptionRecords(String value)
{
SQLiteDatabase db = this.getWritableDatabase();
db.execSQL("DELETE FROM " + user_exceptions+ " WHERE "+username+"='"+value+"'");
db.close();
}