gpt4 book ai didi

android - SQLiteDatabase 中的查询方法

转载 作者:行者123 更新时间:2023-11-30 03:36:06 26 4
gpt4 key购买 nike

我想知道如何使用具有 where 子句和 like 属性的查询方法。基本上我想要的是选择所有列,其中 C_NAME 列是 LIKE keyWord。

我已经试过了,但它不起作用:

cursor = db.query(TABLE, null, C_NAME, new String[] {"like '"+keyWord+"'"}, null, null, null);

最佳答案

查看docs .他们说:

selection   A filter declaring which rows to return, formatted as an SQL WHERE clause (excluding the WHERE itself). Passing null will return all rows for the given table.

所以试试这个:

cursor = db.query(TABLE, C_NAME, new String[] {C_NAME + " like '" + keyWord + "'"}, null, null, null);

另见 answer以及查看有关如何使用 selectionArgs(上面的第 4 个参数)的一些示例。这就是 keyWord 必须去的地方。

关于android - SQLiteDatabase 中的查询方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16624851/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com