Answers for "age function in 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

Code answers related to "SQL"

Browse Popular Code Answers by Language