[Fwd: Getting next birthdays]

2006-05-08 Thread ESV Media GmbH
Hey, i´ve a problem with getting the next and the actual birthdays. This my actual birthday sql : SELECT SQL_CACHE birthday,mem.lname, mem.fname,mem.mem_id FROM members mem INNER JOIN network net ON (net.mem_id = mem.mem_id AND net.frd_id =1) WHERE (( DAYOFYEAR(FROM_UNIXTIME( mem.birthday ))

Re: [Fwd: Getting next birthdays]

2006-05-08 Thread Peter Brawley
I need the birthdays from yesterday, today and the next 4 or 5 birthdays. You don;t need to manually compute every date component. Try something like ... SELECT ... WHERE DATE_SUB(NOW(),INTERVAL 1 DAY) = mem.birthday AND DATE_ADD(NOW(),INTERVAL 5 DAY) = mem.birthday ORDER BY