I'm trying to create a filter in ASP.net, where a user can select a certain age and an SQL statement is to return all users who are currently this age, based on a 'DOB' (date of birth) field.

So, for example, lets say that I have a variable age which currently holds 23. I've got a field in the database called 'DOB', of type 'date'. How would an SQL statement be written to return all records whose date of birth indicate that they are 23? The DOB format is in YYYY-MM-DD.

Thanks

link|improve this question

2  
What's the data type of the DOB field? The format only matters if it's a text field, which it most certainly should not be. – phoog Feb 24 at 20:57
'date' type! Editing question to reflect this. – Dot NET Feb 24 at 20:59
How do you define that someone is 23 years old? Born exactly at 24-Feb-1989? Born in 1989? Born before 24-Feb-1989 but after 24-Feb-1988? – ypercube Feb 24 at 21:08
@ypercube presumably a 23 year old is someone whose 23d birthday is today, or any day after one year ago today. – phoog Feb 24 at 21:26
feedback

5 Answers

up vote 2 down vote accepted
WHERE YEAR(GETDATE() - DATEPART(dy, DOB) + 1) - YEAR(DOB) = 37

just change 37 to 23 on your end or better yet use a variable

Here is an example you can run

CREATE TABLE #test(DOB DATETIME)

INSERT #test VALUES('19701127')
INSERT #test VALUES('19741127')
INSERT #test VALUES('19740227')
INSERT #test VALUES('19761127')
INSERT #test VALUES('19761127')
INSERT #test VALUES('19701127')


SELECT * FROM #test
WHERE YEAR(GETDATE() - DATEPART(dy, DOB) + 1) - YEAR(DOB) = 37

1974-11-27 00:00:00.000
1974-02-27 00:00:00.000

You can also use this more convoluted WHERE clause

 SELECT *
        FROM #test
        WHERE DATEDIFF(YEAR, DOB, GETDATE()) -
        CASE WHEN DATEPART(mm,DOB) > DATEPART(mm,GETDATE())
       OR (DATEPART(mm,DOB) = DATEPART(mm,GETDATE())
       AND DATEPART(dd,DOB) > DATEPART(dd,GETDATE()))
        THEN 1 ELSE 0 END = 37
link|improve this answer
I've tried implementing the first part - what is 'dy'? – Dot NET Feb 24 at 21:18
dy = dayofyear msdn.microsoft.com/en-us/library/ms174420.aspx – SQLMenace Feb 24 at 21:20
Thanks, this worked for me! – Dot NET Feb 24 at 21:28
1  
This doesn't work for leap years. For example, someone born on '2011-04-01' (not a leap year) will be considered to be one year old on '2012-03-31' (a leap year); a day too early. – Joe Feb 24 at 21:30
feedback

Yet another way to achieve this.

DECLARE @age int
DECLARE @dob1 date
DECLARE @dob2 date
SELECT @age = 23
SELECT @dob1 = DATEADD(year, -@age, getdate())
SELECT @dob2 = DATEADD(year, 1, @dob1)

SELECT * FROM <table> 
WHERE DOB BETWEEN @dob1 AND @dob2
link|improve this answer
In addition to those born on Feb 24 1989, who are 23 today, this would return people born between Feb 25 1989 and Feb 24 1990, all of whom are 22 today. – phoog Feb 24 at 21:23
@phoog: That is another definition of age. Not very popular I guess, but small children (who want to look older), tend to use this definition :) – ypercube Feb 24 at 21:28
IMHO this is clearer than @SQLMenace's answer; however it's not quite right: BETWEEN is an inclusive operator - you want DOB >= @dob1 and DOB < @dob2. Also it won't work correctly if both today and dob fall on a leap day (29 Feb). – Joe Feb 24 at 21:35
feedback

I'm going to assume that both the database column and the age variable hold date/time data rather than strings. I'm also going to assume that the [DOB] values are guaranteed not to have a time component.

You're missing one datum from your specification: the reference date. In other words, given the age 23, and a bunch of birthdays, you want to know which people are 23 on a given date. You might assume that this would be the current date, but here we'll generalize this to a variable.

Those born on Feb 24 1989 are 23 today; anyone born later is younger. Those born on Feb 24 1988 or earlier are 24 or older today. The desired range is therefore Feb 25, 1988 to Feb 24 1989.

DECLARE @age int
DECLARE @referenceDate date
DECLARE @rangeEnd date
DECLARE @rangeBegin date

SELECT @age = 23
SELECT @referenceDate = GETDATE()
            --2012-02-24
SELECT @rangeBegin = DATEADD(day, 1, DATEADD(year, -@age-1, @referenceDate))
            --1988-02-25
SELECT @rangeEnd = DATEADD(year, -@age, @referenceDate)
            --1989-02-24

-- EDIT: this expression is incorrect; thanks to ypercube for catching the bug
-- SELECT @rangeBegin = DATEADD(day, 1, DATEADD(year, -1, @rangeEnd))

SELECT * FROM <table> 
WHERE DOB BETWEEN @rangeBegin AND @rangeEnd
link|improve this answer
+1 from me. You explain how (and what) you are calculating so it's easy to adjust this code. Plus, the query will use an index (if possible) on the dob column. – ypercube Feb 24 at 21:31
The best so far, but still doesn't handle leap days. – Joe Feb 24 at 21:40
I think it should be: SELECT @rangeBegin = DATEADD(day, 1, DATEADD(year, -@age-1, @referenceDate )) and the nasty leap years would be OK. – ypercube Feb 24 at 21:43
@Joe using DATEADD should handle leap days, no? – phoog Feb 24 at 21:44
@ypercube I don't see how that would change the result. – phoog Feb 24 at 21:45
show 8 more comments
feedback

Those who where born the same date as today, exactly @age years ago:

WHERE dob = DATEADD( year, - @age, GETDATE() ) 
link|improve this answer
Thanks, but is there a way for it to be general, i.e. not just born today? – Dot NET Feb 24 at 21:12
@Sean: Do you mean to find everyone born in any date of 1989 (for 23 years)? – ypercube Feb 24 at 21:13
I'm trying to return all people within the database who are 23, when all I've got in the database is their DOB. – Dot NET Feb 24 at 21:15
someone born before Feb 24 would be 24 not 23 – SQLMenace Feb 24 at 21:15
SQLMenace: What do you mean? If someone is born on 1989-02-24 would be exactly 23 years old (or 23 years and a day, depending on your timezone). – ypercube Feb 24 at 21:19
show 3 more comments
feedback

If the DOB field is a date field, you can do some date comparisons to get what you want.

SELECT user, DOB FROM yourtable 
WHERE MONTH(CURDATE())=MONTH(DOB) AND 
DAY(CURDATE())=DAY(DOB) AND YEAR(CURDATE())-YEAR(DOB)=23;
link|improve this answer
1  
You're assuming it's MySQL, but in fact it's MS SQL Server. There's no CURDATE(), but there is GETDATE(). – bfavaretto Feb 24 at 21:04
1  
No, that will return all people who are celebrating their 23rd birthday today, not all people who are currently 23. – Mark Whitaker Feb 24 at 21:04
My mistake on both counts. Thanks for the corrections guys. – Bobby W Feb 24 at 21:05
feedback

Your Answer

 
or
required, but never shown

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