Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to write the :condition statement if I would like to get all the record which are created today?

share|improve this question

4 Answers

up vote 30 down vote accepted
 ModelName.all :condition => ["DATE(created_at) = DATE(?)", Time.now]
share|improve this answer
thanks buddy. :) – victorlamhk May 27 '10 at 9:08
1  
@siulamvictor no problem dude. If your problem is solved them pack up the question by accepting the answer – Mohit Jain May 27 '10 at 9:20

I know this question has an accepted answer. The solution suggested in the accepted answer can cause performance issues when the table has millions of rows.

Typically, if you perform lookups based on created_at column, add an index on the table in your migration file.

add_index :posts, :created_at

Now, to lookup records created today:

Rails 3

Post.where("created_at >= ?", Time.zone.now.beginning_of_day)

--------- OR -------------

Add a static method to your model

class Post < ActiveRecord::Base
  def self.today
    where("created_at >= ?", Time.zone.now.beginning_of_day)
  end
end

Post.today #returns posts today

Rails 2

Post.all(:conditions => ["created_at >= ?", Time.zone.now.beginning_of_day])

--------- OR -------------

Add a named_scope to your model

class Post < ActiveRecord::Base    
  named_scope :today, lambda { 
    {
      :conditions => ["created_at >= ?", Time.zone.now.beginning_of_day]
    }
  }
end

Post.today #returns posts today
share|improve this answer
Great point about indexing. Just wanted to clarify that the scope example in this post is for Rails 3 only, since it looks like it's under the Rails 2 heading. In Rails 2, you would need to use named_scope rather than scope. Also, in Rails 3, you could equivalently use a class method def self.today where("created_at >= ?", Time.now.beginning_of_day) end which is probably cleaner than using a scope in this case, since it allows you to forgo the lambda. – evanrmurphy Jan 31 at 18:56
@evanrmurphy, Thanks for noting that. I have fixed answer. – Harish Shetty Jan 31 at 19:37

MySQL:

Model.all :condition => ["DATE(created_at) = ?", Date.today] # rails 2
Model.where("DATE(created_at) = ?", Date.today) # rails 3

PostgreSQL:

Model.all :condition => ["created_at::date = ?", Date.today] # rails 2
Model.where("created_at::date = ?", Date.today) # rails 3
share|improve this answer
thanks buddy. :) – victorlamhk May 27 '10 at 9:03

Mohit Jain's answer adapted for Rails3

Model.where "DATE(created_at) = DATE(?)", Time.now
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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