vote up 0 vote down star

hey all,

i have a problem regarding date diff function of mysql, i can use it and it is simple but i dont understand that how do i use it to collect difference within the table field. e.g. i have a column "dob" and i want to write a query that will do something like

select dateDiff(current_timeStamp,dob) from sometable 'here dob is the table column

i mean i want difference from current date time to the table field "dob", each query result brings its difference is the age of the user.

i hope i am clear :(

but i dont think so since i cant understand my own question but still please if somebody understood then answer me

thanks

flag

40% accept rate
Wouldn't "the difference from the current datetime and a DOB" always be that person's age? – Rex M Sep 5 at 14:57

3 Answers

vote up 0 vote down check

If I understand your comments on the previous answers, the date-of-birth column is not actually a DATE value but a string in the format m/d/y. I strongly recommend you change this; it slows down any date computations you want to do and you risk invalid date values getting entered into the column.

I think this is what you need. It uses the STR_TO_DATE() function and an algorithm for computing the age from the MySQL documentation:

SELECT YEAR(CURDATE()) - YEAR(STR_TO_DATE(dob, '%m/%d/%Y'))
- (RIGHT(CURDATE(), 5) < RIGHT(STR_TO_DATE(dob, '%m/%d/%Y'), 5)) AS age
FROM sometable;
link|flag
vote up 0 vote down

You mean like this?

SELECT DATE_FORMAT(FROM_DAYS(DATEDIFF(NOW(), dob)), "%Y")+0 AS age from sometable

(Source)

link|flag
Returns Null my date stored is m/d/year, for record which i am working has 1/1/1969 dob. but it returns null :( all the time – chsab420 Sep 5 at 16:42
vote up 0 vote down

If you want, for each user, display the age in years, do

select name,extract(year from (from_days(dateDiff(current_timestamp,dob)))) 
       from sometable;
link|flag
Returns Null my date stored is m/d/year, for record which i am working has 1/1/1969 dob. but it returns null :( all the time – chsab420 Sep 5 at 16:41
So what's the data type on your dob field? You really should be using a date/time type, not a plain text. – Martin v. Löwis Sep 5 at 21:12

Your Answer

Get an OpenID
or

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