Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select thedate from (
select date_add('2007-10-10'
, interval 10* one.i + two.i day) as thedate
from (
select 0 as i
union all select 1
union all select 2
union all select 3
union all select 4
union all select 5
) as one
cross
join (
select 0 as i
union all select 1
union all select 2
union all select 3
union all select 4
union all select 5
) as two
) as thirtysix
where thedate between '2007-10-10' and '2007-11-01'
order by thedate