I want to calculate the current Age from Date of Birth in my Oracle function.
What I am using is (Today-Dob)/30/12, but this is not accurate as some mon
(Today-Dob)/30/12
Age (full years) of the Person:
SELECT TRUNC(months_between(sysdate, per.DATE_OF_BIRTH) / 12) AS "Age" FROM PD_PERSONS per