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

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -