Answers for "calculate age from date mysql"

SQL
0

mysql calculate age

SELECT DATEDIFF(CURRENT_DATE, STR_TO_DATE(t.birthday, '%d-%m-%Y'))/365 AS ageInYears
  FROM YOUR_TABLE t
Posted by: Guest on April-26-2020
0

compute age mysql

MySQL Compute a Persons Age
Posted by: Guest on October-26-2021

Code answers related to "calculate age from date mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language