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.
2日間のデータを取得するためのクエリが必要です。これを試してみましたが、テーブルのすべてのレコードが表示されます。Between演算子が機能していません。
Select * From Test Where strftime('%d-%m-%Y',Date) Between '01-06-2012' And '30-06-2012'
どうすればこれを修正できますか?
これを試着して、
Select * From Test Where strftime('%Y%m%d',Date) Between '20120601' And '20120630'