Verwenden Sie dieses Snippet:
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
Vor Ihrer database.query
:
database.query(true, table, projection, selection, selectionArgs, null, null, null, null);
Ändern Sie die Werte für distinct , Grenze , orderBy , haben und groupBy wenn Sie sie brauchen.