Answers for "sql age calculation from date of birth into mysql column"

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

Code answers related to "sql age calculation from date of birth into mysql column"

Code answers related to "SQL"

Browse Popular Code Answers by Language