I have a set of events which I will have to feed into the database before I ship the app so that the application is ready to read from this database.
I have seen some po
Use the date() function. Have a try:
date()
select * from VendorEvents where ((event_start between date('2011-12-01 00:00:00 +0000') and date('2012-02-01 00:00:00 +0000')) or (event_end between date('2011-12-01 00:00:00 +0000') and date('2012-02-01 00:00:00 +0000')))