如何从 Android SQLite 查询的动态 ArrayList 编写 WHERE IN 子句
Posted
技术标签:
【中文标题】如何从 Android SQLite 查询的动态 ArrayList 编写 WHERE IN 子句【英文标题】:How to write WHERE IN clause from a dynamic ArrayList for Android SQLite query 【发布时间】:2011-10-30 11:01:16 【问题描述】:如何在 android SQLite 查询中编写 where in 子句?
检索单个客户的功能
public Cursor getCustomers(int groupId)
return db.query(TABLE_CUSTOMERS, new String[] KEY_CUSTOMER_ID, KEY_NAME, KEY_GROUP_ID+" = "+groupId, null, null, null, null);
检索更多客户的功能
public Cursor getCustomers(ArrayList<Integer> groupIds)
// Need to apply SELECT id, name FROM customers WHERE id IN (11, 13, ...18);
//return db.query(TABLE_CUSTOMERS, new String[] KEY_CUSTOMER_ID, KEY_NAME, KEY_GROUP_ID+" = "+groupIds, null, null, null, null);
groupId ArrayList 的大小是动态的。
【问题讨论】:
【参考方案1】:我想根据我的研究在@JosephL's answer 中添加一些内容:
我有两个 ArrayList 具有以下值:
First ArrayList(在第一列)具有重复值,Second ArrayList(在第二列)具有唯一值。
=> 67 : 35
=> 67 : 36
=> 70 : 41
=> 70 : 42
处理后都打印如下:
-
第一个数组:
"(" + TextUtils.join(",", arrayList1) + ")"
第二个数组:"(" + TextUtils.join(",", arrayList2) + ")"
第一个数组(使用new HashSet<>(arrayList1)
删除重复项):
"(" + TextUtils.join(",", new HashSet<>(arrayList1)) + ")"
=> 第一个数组:(67,67,70,70)
=> 第二个数组:(35,36,41,42)
=> 第一个数组(使用 new HashSet<>(arrayList1)
删除重复项):(67,70)
希望它有用。谢谢。
【讨论】:
【参考方案2】:return db.query(TABLE_CUSTOMERS, new String[] KEY_CUSTOMER_ID, KEY_NAME , KEY_GROUP_ID + " >=" + groupIdsLowLimit + " and " + KEY_GROUP_ID + " <=" + groupIdsUpLimit, null, null, null, null);
String where = "";
for (int i = 0; i < list.size(); i++)
where = where + KEY_GROUP_ID + " =" + list.get(i).toString() + "";
if (i != (list.size() - 1))
where = where + " or";
return db.query(TABLE_CUSTOMERS, new String[] KEY_CUSTOMER_ID, KEY_NAME , where, null, null, null, null);
【讨论】:
对不起,id 列表可能像 (11, 103, 6, 100)【参考方案3】:您可以使用Android TextUtils 类连接方法制作一个逗号分隔的 ID 列表以放入 in 子句中。
String selection = KEY_GROUP_ID + " IN (" + TextUtils.join(", ", groupIds) + ")";
return db.query(TABLE_CUSTOMERS, new String[] KEY_CUSTOMER_ID, KEY_NAME, selection, null, null, null, null);
顺便说一句,如果 groupIds 是另一个表中的主键列表,您应该使用 Longs 来存储它们而不是整数,否则当 ID 变大时它会溢出。
【讨论】:
以上是关于如何从 Android SQLite 查询的动态 ArrayList 编写 WHERE IN 子句的主要内容,如果未能解决你的问题,请参考以下文章
如何在android中使用游标(sqlite查询)搜索数据库
如何将大型 JSON 数据从服务器存储到 SQLITE Android?