Gunakan cuplikan ini:
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
Sebelum database.query
. Anda :
database.query(true, table, projection, selection, selectionArgs, null, null, null, null);
Ubah nilai untuk distinct , batas , pesan Oleh , memiliki dan grupDengan jika Anda membutuhkannya.