为什么WHERE工作不正确

时间:2014-09-18 11:14:19

标签: android sql

我写

Cursor c = db.query("contacts", null, "label <> ?", new String[]{cons.LABEL_SKIP}, null, null, "name");

cons.LABEL_SKIP等于Skipped;

我想选择标签不等于Skipped的数据库行,但答案是空的。

1 个答案:

答案 0 :(得分:0)

以这种方式试试

Cursor c = db.query("contacts", null, "label != ?", 
                                  new String[] { cons.LABEL_SKIP });