How do you use the “between” function on phpMyAdmin search function?

I’ve tried
2012-11-29 AND 2012-11-30
and
'2012-11-29' AND '2012-11-30'
and when I press “go” it returns back to this screen. There are definetly results, because if I set the date to = 2012-11-29 I get a result.
Well, for normal fields you should use comma to separate values. For example, to include
BETWEEN 4 AND 5clause in your query, just write4, 5in that input. In your case entering2012-11-29, 2012-11-30should do the trick.Interestingly, the current version of
phpMyAdmin(3.5.1) just doesn’t let comma into a datetime column-related input.