Paul Rowland
Paul Rowland

Reputation: 8352

In TSQL, how would you convert from an int to a datetime and give the age?

What would be the sql for the following,

I have a date of birth in an int field,

ie YYYYMMDD = 19600518

I would like to get the age.

Upvotes: 6

Views: 15588

Answers (8)

Michael Buen
Michael Buen

Reputation: 39483

[EDIT]

-- I forgot to declare the variables

declare @birthday datetime;
set @birthday = convert(datetime,convert(varchar, 19600518), 112);
declare @datetoday datetime;
set @datetoday = getdate();

select 
(
CASE
WHEN dateadd(year, datediff (year, @birthday, @datetoday), @birthday) <= @datetoday
THEN datediff (year, @birthday, @datetoday)     
ELSE datediff (year, @birthday, @datetoday) - 1
END) as age;

Upvotes: 1

Mark Brittingham
Mark Brittingham

Reputation: 28875

Most of the other answers are not calculating age - just whole years (e.g. Jan 1 2009 is one "year" after Dec 31 2008). Thus, if you use most of the calculations on this page, you will return an incorrect age for half of the year, on average. Luke is the only person who has seen this but his answer strikes me as too complicated - there is an easier way:

Select CAST(DATEDIFF(hh, [birthdate], GETDATE()) / 8766 AS int) AS Age

(NOTE: Thanks go to 'Learning' for making a great catch on my original algorithm - this is a revision that uses hours instead of days)

Because the rounding here is very granular, this is almost perfectly accurate for every day of every year. The exceptions are so convoluted that they are almost humorous: every fourth year the age returned will be one year too young if we A) ask for the age before 6:00 AM, B) on the person's birthday and C) their birthday is after February 28th. Of course, depending on what time someone was born this might 'technically' be correct! In my setting, this is a perfectly acceptable compromise.

Here is a loop that prints out ages to show that this works.

Declare @age int;
Declare @BirthDate datetime;
Declare @Year int;
Set @Year = 2008;
WHILE (@Year > 1930)
BEGIN
    -- Put today's date where you see '-03-18'
    SET @BirthDate = CAST(Cast(@Year as varchar(4)) + '-03-18'  AS DATETIME)
    SELECT @age=CAST(DATEDIFF(hh, @BirthDate, GETDATE()) / 8766 AS int);
    Print Cast(@Year as varchar)  + ' Age: ' + Cast(@age as varchar);
    Set @Year = @Year - 1;
END;

Finally, this is the version that will also convert Paul's integer date to a real date:

CAST(DATEDIFF(hh, Convert(Datetime, Convert(varchar(8), [birthdate]), 112), GETDATE()) / 8766 AS int) AS Age

Upvotes: 4

Paul Rowland
Paul Rowland

Reputation: 8352

I worked it out and got same as @Learning

select dob, datediff(year, convert(datetime, convert(varchar(8),[dob])) ,getdate()) as age
from  [mytable]
where IsDate(convert(varchar(8),[dob])) = 1

NB. I needed the IsDate as well as there were some invalid dates in the data.

Edit. Here is an article from SQLServerCentral on calculating age.

Upvotes: 0

LukeH
LukeH

Reputation: 269678

None of the other answers are actually calculating age. They're calculating the number of year boundaries and not taking the birthday into account.

To calculate the age, you'll need to do something like this:

DECLARE @d DATETIME
SET @d = CONVERT(DATETIME, CONVERT(VARCHAR(8), 19600518), 112)

SELECT DATEDIFF(year, @d, GETDATE())
    - CASE WHEN DATEADD(year, DATEDIFF(year, @d, GETDATE()), @d) <= GETDATE()
           THEN 0 ELSE 1 END AS Age

Upvotes: 12

HLGEM
HLGEM

Reputation: 96658

This is a reason why you should NOT ever store dates as anything except a datetime datatype. The best fix is to change your datatype and convert all the dates once (wouldn't be surprised if there are few invalid ones in there either). then you never have to do these workarounds again.

Upvotes: 0

Shalom Craimer
Shalom Craimer

Reputation: 21469

Here's a one-liner way to do it:

CONVERT(DATETIME, CONVERT(VARCHAR(8),19600518), 112)

But beware! This relies on T-SQL, and probably won't work in other SQL environments.

Please note that the "style" of 112 is simply the "ISO" date format of yyyymmdd. (Something I found in some CONVERT documentation.)

Upvotes: 0

Learning
Learning

Reputation: 8185

Age in years :

select datediff(YY, convert(datetime, convert(varchar, 19600518)), getdate())

Upvotes: 1

jrcs3
jrcs3

Reputation: 2780

DECLARE @dateSt VARCHAR(8)
DECLARE @startDt DATETIME

-- Set the start date string
SET @dateSt = '19600518'

-- Make it a DATETIME (the ISO way)
SET @startDt = CAST(SUBSTRING(@dateSt, 1, 4) + '-' + 
   SUBSTRING(@dateSt, 5, 2) + '-' + 
   SUBSTRING(@dateSt, 7, 2)  AS DATETIME)

-- Age in Days
SELECT DATEDIFF(D, @startDt, getdate())

Upvotes: 2

Related Questions