How to write the :condition statement if I would like to get all the record which are created today?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||||||
|
|
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
Now, to lookup records created today: Rails 3
--------- OR ------------- Add a static method to your model
Rails 2
--------- OR ------------- Add a named_scope to your model
|
|||||
|
|
MySQL:
PostgreSQL:
|
||||
|
|
|
Mohit Jain's answer adapted for Rails3
|
|||
|
|