* Thus wrote John W. Holmes ([EMAIL PROTECTED]):
> DvDmanDT wrote:
> 
> >How would I get the age of someone if I store the birthdate in a date 
> >field?
> >I just realized FLOOR((UNIX_TIMESTAMP(NOW()) -
> >UNIX_TIMESTAMP(birthdate))/60/60/24/365.25)  wont work for persons born
> >before 1970... :p I must get the current age in years, and I must be able 
> >to
> >select by age... :p Any ideas?
> 
> YEAR(CURRENT_DATE) - YEAR(dob) - 
> (IF(DAYOFYEAR(dob)>DAYOFYEAR(CURRENT_DATE),1,0)) AS age

I do wonder what the rule for those born on Feb 29'th.  Do they
celebrate they're birthday before or after it on non leap years?


Curt
-- 
"My PHP key is worn out"

  PHP List stats since 1997: 
          http://zirzow.dyndns.org/html/mlists/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to