Použijte tento úryvek:
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
Před database.query
:
database.query(true, table, projection, selection, selectionArgs, null, null, null, null);
Změňte hodnoty pro odlišné , limit , objednat , má a groupBy pokud je potřebujete.