Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プロジェクトに sqlite データベースがあり、3 つyearのフィールドmonthとdayフィールドがあります。テーブルから先週または先月の情報を取得し、カーソル アダプターを使用して listView に表示したいと考えています。私はそれを行う方法がわかりません。私のテーブルはそれほど大きくなく、レコードは日付でソートされているため、反復が答えになります。どうにかして私を助けてください。
year
month
day
SELECT * FROM myTable WHERE DATE(timeStamp) >= DATE('now', 'weekday 0', '-7 days');