在我的数据库中,我有 1 个表date
作为列之一,它存储用户在我的表中添加一些数据的日期。
现在我想单独检索当月的数据。我通过谷歌搜索但没有得到适当的答案。
我的表创建代码:
"create table incomexpense(
_id integer primary key autoincrement,
"+"price text not null,description text not null,
"+"quantity text not null,
"+"total text not null,
"+"category text not null,
"+"recurrence text not null,
"+"date text not null,
"+"groups text not null,
"+" recurrenceid text not null);";
谁能帮助如何从当前日期获取第 7 天的日期。