How can I pull data in mySQL by day using python date?
Say I want day1
and day2
( or a day after day1
) iterate for n
times
So I need the date in "where" SQL statement to look like below list in each iteration (n
times )
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
So as to write:
for each iteration ..
con.execute("select * from table where date >= day1 and date < day2" )