Brug dette uddrag:
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
Før din database.query
:
database.query(true, table, projection, selection, selectionArgs, null, null, null, null);
Skift værdierne for distinct , grænse , bestil efter , har og groupBy hvis du har brug for dem.