3

您好,我有一个 SQL 查询,我希望它有两个 WHERE 子句。我希望它在我的数据库中同时查询 Bid 和 Cid 并将其返回到游标有我的代码

     public Cursor getSubCategoriesQuerybyCidandBid(String Cid, int Bid) {
        this.openDataBase();
        Cursor c;
         String[] asColumnsToReturn = new String[] {SECOND_COLUMN_ID, SECOND_COLUMN_IDENTITY, SECOND_COLUMN_SUBCATEGORIES};
         c =dbSqlite.query(false, TABLE_NAME, asColumnsToReturn, COLUMN_BID + "=" + Bid + COLUMN_CID + "=" + Cid , null, null, null, null, null);
         return c;
    }

这就是我想要的样子,但这对解决这个问题没有任何想法?

4

1 回答 1

7

试试COLUMN_BID + "=" + Bid + " AND " + COLUMN_CID + "=" + Cid

于 2012-04-29T15:39:40.150 回答