SELECT * FROM table WHERE
strftime(%s, date) BETWEEN strftime(%s, start_date) AND strftime(%s, end_date)
select *
from table_1
where mydate >= Datetime('2009-11-13 00:00:00')
and mydate <= Datetime('2009-11-15 00:00:00')
SELECT * FROM table WHERE
strftime(%s, date) BETWEEN strftime(%s, start_date) AND strftime(%s, end_date)
select *
from table_1
where mydate >= Datetime('2009-11-13 00:00:00')
and mydate <= Datetime('2009-11-15 00:00:00')