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.
日時エントリの列があり、過去 24 時間のすべてのアイテムを取得したいと考えています。今私はしようとしています:
SELECT * FROM " + SQLHelp.LOG_TABLE + " WHERE " + SQLHelp.TIME_COLUMN + "> datetime('now','-1day')
ここでSQLHelp.LOG_TABLE and SQLHelp.TIME_COLUMN、それぞれテーブルと列の名前です。
SQLHelp.LOG_TABLE and SQLHelp.TIME_COLUMN
-1と の間にはスペースが必要dayです。datetime('now','-1 day')期待どおりに動作します。
-1
day
datetime('now','-1 day')