Question : find the number of years

if i have a date formated as MM/DD/YYYY  and i would like to subtract it from  todays date to find the numbers of years between both dayes. what function should i use to do so?

Answer : find the number of years

For MySQL :

1:
SELECT YEAR(now()) - YEAR(datefield) FROM yourTABLE
Random Solutions  
 
programming4us programming4us