I'm trying to find all users with birthdays in the coming 2 weeks.

I tried the following:

User.find(:all, :conditions => ["DOB > ? and DOB <= ?", Date.today, 2.weeks.from_now])

which obviously doesn't work because the 'year' in the DOB doesn't equal to this year.

I need to only compare the months and the days.

How can I go about doing this?

link|improve this question

feedback

3 Answers

You have to perform mysql method on your dob column

Something like following

  SELECT FROM users  
         WHERE DAYOFYEAR(dob)in (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14)

You can use functions like WEEK whichever works for you Ref this for mysql function

In ruby

arr=[]
(0..13).each{|i| arr << (Date.today+i.day).day }
User.find(:all, :conditions => ["DAYOFYEAR(DOB) in (?)", arr])
link|improve this answer
feedback
up vote 1 down vote accepted

Based on Salil's answer, I have derived the following to make it work for sqlite:

arr = []
(0..14).each { |i| arr << (Date.today + i.day).yday }
@users = User.find(:all, :conditions => ["cast(strftime('%j', DOB) AS int) in (?)", arr])
link|improve this answer
feedback

This may help in changing the date format for comparison as by default it will take Date.today.year.

              Date.strptime("{ #{DOB.month}, #{DOB.date} }", "{ %m, %d }").

Date.strptime("{ 9, 10 }", "{ %m, %d }") gives

<Date: 2011-09-10 (4911629/2,0,2299161)>

Do post if you get some code for direct comparison.

link|improve this answer
Is there an SQL way to do the same thing? Because I can't just stick ruby code into my conditions – Jonathan Chiu Sep 10 '11 at 12:56
feedback

Your Answer

 
or
required, but never shown

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