Not in front of the IDE right now, so my syntax may be a little bit, but something like this should work (assuming a table named table1 with a field named date1) ...
select round((Months_between(current_date,date1)/12),1) as years from table1 where date1 > add_months(current_date,-60)
source share