I am wondering if it is possible to use a find condition to find objects according to the hour, ignoring the date. For example, i have a date field storing DateTime objects in the database and I want to find all objects where the hour is between the times 2:00PM and 4:00PM regardless of their date. It seems that to do this, ActiveRecord would have to perform an operation on each DateTime to find the hour, such as: find(:all, :conditions => ["date.hour >= ? AND date.hour <= ?", 2:00PM, 4:00PM]) I know this does not work, but it helps to convey my goal. Maybe I have to write a raw SQL condition? Maybe it is easier to just save the time values in a separate field for each object in the database in the firstplace? I know saves are expensive and was trying to avoid them. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Maurício Linhares
2008-Oct-09 01:52 UTC
Re: :find conditions using hour value of saved DateTime object
Ideally, you should save this in separate columns, as this query is definitely going to kill your database (there''s no way to make an index for it, the database will have to go through all rows), but you could do it like this if you''re using MySQL: find(:all, :conditions => ["HOUR( date ) >= ? AND HOUR( date ) <= ?", 2, 4]) On Wed, Oct 8, 2008 at 10:44 PM, David <dlynam-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > I am wondering if it is possible to use a find condition to find > objects according to the hour, ignoring the date. For example, i have > a date field storing DateTime objects in the database and I want to > find all objects where the hour is between the times 2:00PM and 4:00PM > regardless of their date. It seems that to do this, ActiveRecord > would have to perform an operation on each DateTime to find the hour, > such as: > > find(:all, :conditions => ["date.hour >= ? AND date.hour <= ?", > 2:00PM, 4:00PM]) > > I know this does not work, but it helps to convey my goal. Maybe I > have to write a raw SQL condition? Maybe it is easier to just save > the time values in a separate field for each object in the database in > the firstplace? I know saves are expensive and was trying to avoid > them.-- Maurício Linhares http://alinhavado.wordpress.com/ (pt-br) | http://blog.codevader.com/ (en) João Pessoa, PB, +55 83 8867-7208 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---