Gebruik dit fragment:
String table = "tblsample";
String selection = "DefaultId =? OR Name=?";
String[] selectionArgs = new String[]{"567"};
String[] projection = new String[]{"DefaultId","Name"}; // if you want to fetch only these two columns
Vóór uw database.query
:
database.query(true, table, projection, selection, selectionArgs, null, null, null, null);
Wijzig de waarden voor distinct , limiet , orderBy , hebben en groupBy als je ze nodig hebt.