このスニペットを使用してください:
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
database.query
の前 :
database.query(true, table, projection, selection, selectionArgs, null, null, null, null);
個別の値を変更します 、制限 、 orderBy 、持っている およびgroupBy 必要な場合。