Here is a way to determine the age from a date of birth.
It handles leap years also.

SELECT IFNULL(CAST( (TO_DAYS(NOW())- TO_DAYS(dob)) / 365.25 as SIGNED) ,0) as Age from Table_Name
http://dev.mysql.com/doc/refman/5.0/...functions.html