I need to query comments made in one day. The field is part of the standard timestamps, is created_at. The selected date is coming from a date_select. How can I use ActiveRecord to do that?

I need somthing like:

"SELECT * FROM comments WHERE created_at BETWEEN '2010-02-03 00:00:00' AND '2010-02-03 23:59:59'"
link|improve this question

62% accept rate
feedback

3 Answers

up vote 1 down vote accepted

If you only want to get one day it would be easier this way:

Comment.all(:conditions => ["date(created_at) = ?", some_date])
link|improve this answer
feedback

This code should work for you:

Comment.find(:all, :conditions => {:created_at => @selected_date.beginning_of_day..@selected_date.end_of_day})

For more info have a look at Time calculations

link|improve this answer
Ok but from the form I get this: {"written_at(4i)"=>"18", "written_at(5i)"=>"56", "content"=>"rrrrrr", "written_at(1i)"=>"2010", "written_at(2i)"=>"5", "written_at(3i)"=>"4"} How can I build an object to use beginning_of_day? – rtacconi Mar 4 '10 at 19:05
Please add the code of the form in your question... – baijiu Mar 4 '10 at 19:18
This is what I need: purab.wordpress.com/2009/06/16/… – rtacconi Mar 4 '10 at 19:23
FYI, your link is now 404 – Craig Walker Mar 18 '11 at 17:16
2  
I like this method over the accepted answer because it doesn't rely on a db-level date() function; it's potentially more db independent. – Craig Walker Mar 18 '11 at 17:19
feedback
Comment.find(:all, :conditions =>["date(created_at) BETWEEN ? AND ? ", '2011-11-01','2011-11-15'])
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.