What would be the expression to check if someone's 20 years or over without hard-coding the date?
In the SQL
SELECT student_fname
FROM students
WHERE dob<'05-MAR-1995';
I was thinking about using SYSDATE
but then I don't know the syntax to subtract 20 years.