gpt4 book ai didi

Android Content Provider 如何使用多个 selectionArg 进行查询

转载 作者:搜寻专家 更新时间:2023-10-30 22:11:00 24 4
gpt4 key购买 nike

我有如下表格:

同学们:

id   |  student_name
------------------
1 | max
2 | alex
3 | james

我只想查询 ID 为 13 的学生。

getContentResolver().query(StudentContentProvider.CONTENT_URI2, projection,"id=?",selectionArg,null);

我必须在 selectionArg 中写什么,所以我只能得到 ID 为 1 和 3 的学生?

最佳答案

你试过吗

getContentResolver().query(StudentContentProvider.CONTENT_URI2, projection,"id=1 or id=3",null,null);

或者如果您使用占位符“?” selectionArg 必须包含值“1”和“3”

getContentResolver().query(StudentContentProvider.CONTENT_URI2, projection,"id=? or id=?",selectionArg,null);

关于Android Content Provider 如何使用多个 selectionArg 进行查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29142704/

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