我正在创建一个用户需要填写表格的应用程序。我需要获取某些特定列为空的行并将其显示给用户。我可以通过
Cursor appcount=db.rawQuery("select count(app_salutation) AS appempty from "+AllValuesTable+" where app_salutation=''", null);
appcount.moveToFirst();
int apco=appcount.getInt(0);
appcount.close();
现在我想显示这些有一些空字段的行。我怎么做??