Hi, i think the following should help / give you an idea (eg retrieves names of members whose dob falls in current month--according to system date)
select cname from tablename wherE
datepart (mm,convert(datetime,dob))
= (select datepart(mm,convert(datetime,getdate())) )