Answers for "how to get age from date of birth in string in mysql"

SQL
-1

mysql get age from date

SELECT YEAR(CURRENT_DATE)-YEAR(t.birthday) AS ageInYears
  FROM YOUR_TABLE t
Posted by: Guest on August-30-2021

Code answers related to "how to get age from date of birth in string in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language