0
現在の日付でSQLスクリプトファイルを更新するための支援が必要です。例えば。 Pythonから。 SQLスクリプトには、from-> to dateフィルタがあります。今月の記録を取得する。私はLinuxマシン上のCRONジョブからこのスクリプトを実行します。また、日付を自動的に更新する必要があります。Pythonで現在の日付のスクリプトを更新する
どのようにですか?
;SQL script text to update. Before running sqlite3 shell command.
...
and date(tc1.time,'unixepoch')
BETWEEN date('2012-03-01','start of month')
and date('2012-04-01','start of month','+1 month','-1 day')
and date(tc2.time,'unixepoch')
BETWEEN date('2012-03-01','start of month')
and date('2012-04-01','start of month','+1 month','-1 day')
日付システムの日付が2012-03-30の場合。
>date +"%Y-%m-%d"
2012-03-30
私は2012-03-01から2012-04-01に行きたいと思っています。日付が2012-04-20または2012-04-21の場合は、2012-04-01から2012-05-01までの出力を希望します。
提案がありますか?