我每周在我的应用程序中显示数据时遇到问题?
我可以在我的 SQLite 中使用此代码按天显示数据
SELECT substr(_id, 1, 7) as _id, sum(value) as total FROM pd_table GROUP BY _id order by _id desc
通过使用此代码,我还能够显示基于月份的数据
SELECT substr(_id, 1, 10) as _id, sum(value) as total FROM pd_table GROUP BY _id order by _id desc
_id 使用 SimpleDateFormat ("yyyy-MM-dd HH: mm: ss")
现在我想每周展示一次。如何?
任何答案对我来说都非常有用:)