我正在创建一个 android 应用程序。其中我有一个没有列的数据库表。从这些列中,我选择 4 个特定列并检查其中是否有空值或空值。它应该给我有空值的行数。我使用的代码是
count=db.rawQuery("select * from "+AllValuesTable+" where (app_salutation IS NULL OR app_salutation='') AND (ref_cusagreeno IS NULL or ref_cusagreeno='') AND (asset_categry IS NULL or asset_categry='') AND (off_Applcname IS NULL or off_Applcname='');", null).getCount();
但我得到的输出是 0 而它应该显示 4....因为有四行这些列是空的。我似乎无法找出问题所在。请帮忙。谢谢!