The following query:
SELECT * FROM `objects` WHERE (date_field BETWEEN \'2010-09-29 10:15:55\' AND \'2010-01-30 14:15:55\')
returns nothin
Is date_field of type datetime? Also you need to put the eariler date first.
date_field
datetime
It should be:
SELECT * FROM `objects` WHERE (date_field BETWEEN '2010-01-30 14:15:55' AND '2010-09-29 10:15:55')