Pythonの日付を使用して、日ごとにmySQLでデータを取得するにはどうすればよいですか? day1
私が欲しいと言ってday2
(またはその翌日day1
)、n
回繰り返します
したがって、「where」SQLステートメントの日付が、各反復で以下のリストのようになる必要があります(n
回 )
day1 >= '2012-01-01' and day2 < '2012-01-02' ( n = 1 )
day1 >= '2012-01-02' and day2 < '2012-01-03' ( n = 2 )
.
.
day1 >= yesterday and day2 < today ( n times )
.
Start_date = '2012-01-01' <- How can I write this in python
End_date = Today() <- and this
書くように:
for each iteration ..
con.execute("select * from table where date >= day1 and date < day2" )