Way to construct a query in which a date falls between a start and end date in SQLite? -
the way have far is:
select * time date('now') > date(start_date) , date('now') < date(end_date); i hoping there short way construct same query. checked docs sqlite's date functions, hard understand, , there isn't obvious function it. if there not way, fine, wanted check expert users in sqlites ways. in advance!
select * time_table date_column between '01-01-2012' , '12-31-2012'
Comments
Post a Comment