Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want my winforms display birthdays on that date, however I'm not sure how to compare the present date and a datetime format. For example, if my birthday was 1/1/1990, I want my datagrid to show my info on 1/1/2011. I'm not sure how to parse the date in SQL; if anyone can help me that would be great!

share|improve this question

3 Answers

up vote 7 down vote accepted

I think this should give you a good idea:

SELECT
   *
FROM
   Users
WHERE
   MONTH( Users.Birthdate ) = MONTH( GetDate() )
   AND
   DAY( Users.Birthdate ) = DAY( GetDate() )
share|improve this answer
+1. I had a clever answer using JulianDate vie datepart(dayofyear...) but it crahsed and burned over leap year. Make sure your final solution takes that into account! – Philip Kelley Nov 8 '11 at 23:33
thanks, what a needed – willykao Nov 8 '11 at 23:39

Another way similar to the first.

SELECT * FROM Users WHERE
 DatePart(d, Users.Birthdate) = DatePart(d, GetDate() )
 AND
 DatePart(m, Users.Birthdate ) = DatePart(m, GetDate() )
share|improve this answer

A different approach using Jamie F's example. Potentially more index friendly, you'd have to try it and see though.

SELECT
  *
FROM
  Users
WHERE
  DATEADD(YEAR, -DATEDIFF(YEAR, 0, Users.Birthdate), Users.Birthdate)
  =
  DATEADD(YEAR, -DATEDIFF(YEAR, 0, GetDate()      ), GetDate()      )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.