gpt4 book ai didi

android - SQLite 中的 sql 查询是什么,从数据库表中检索上周、上个月和去年的记录

转载 作者:行者123 更新时间:2023-11-29 00:48:00 25 4
gpt4 key购买 nike

我在我的项目中使用 SQLite 创建了一个数据库表,当用户单击指定的按钮时,我想从数据库中检索上周、上个月、去年的记录。但我不知道如何检索记录。是否有任何函数可以相应地获取这些记录?

最佳答案

你需要像这样构造一个“where”子句:

ContentResolver cr = getContentResolver();
Cursor groupCur = cr.query(
Groups.CONTENT_URI, // what table/content
new String [] {Groups._ID, Groups.NAME}, // what columns
"Groups.NAME NOT LIKE + 'System Group:%'", // where clause(s)
null, // ???
Groups.NAME + " ASC" // sort order
);

我将其分开以便更容易解释,但这是您通常看到的:

Cursor groupCur = cr.query(Groups.CONTENT_URI, null, null, null, null);

关于android - SQLite 中的 sql 查询是什么,从数据库表中检索上周、上个月和去年的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5223980/

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