Another solution using OR
declare @today datetime
declare @lastday datetime
select @today = '11/01/2001'
select @lastday = DATEADD(m,4,@today)
select person,birthday
from myTest
WHERE (dateadd( year, datediff( year, birthday, @today), birthday) >= @today and
dateadd( year, datediff(...