Subject Re: select birthdays form the next several days
Author Ian A. Newby
How about

select birthday from persons
where mod((current_date - birthday) / 365.25) < (14 / 365)

you'll need a MOD udf though.

It may be a bit inaccurate, but should be nearly there.

regards
Ian Newby