How can I get the list of upcoming b'days of my friends with user id, name and birth day. I am using following fql query to get the friends b'day list.
query = "SELECT uid, name, birthday_date FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) ORDER BY birthday_date DESC LIMIT 50 ";
SELECT uid, name, birthday_date FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) and birthday_date >= "06/08" and birthday_date <= "06/15" ORDER BY birthday_date ASC LIMIT 500? – Scharron Jun 8 '12 at 9:54