return mDb.query(DATABASE_TABLE, new String[] { KEY_ROWID, KEY_LEVEL }, KEY_LEVEL + ">" + "=" + 3 + "<" + 5, null, null, null, null);
What am I doing wrong. He returns to all levels above and is equal to level 3, but not less than 5. I tried && | etc.
source share