I did some searching, and did find statements to calculate age from birthdate today, but what i'm looking for is to calculate the age from a fixed date ( in the future of a specific user ( the one logged in)
the DB is called: jos_comprofiler
the user ID is called: id
the birthdate is called: cb_geboortedatum
The date to calculate towards would be june 13th 2008
First of all, I don't know how to identify the user himself (how to point at the right id), and after that the birtdate should be called and subtracted fom the fixed date to determine age.
I got a piece of code from someone on another forum that does the calculation, now for the correct user ID to link to the birthdate....
Code: Select all
SELECT DATE_FORMAT(FROM_DAYS(TO_DAYS('2008-6-13') - TO_DAYS(cb_geboortedatum)), '%Y') + 0 AS Age
FROM jos_comprofiler
WHERE id = givenIdValue;