What is the best way to calculate the age in years from a birth date in sqlite3?
|
feedback
|
This one works. | |||
|
feedback
|
|
There isn't a simple way to do this with SQLite out of the box. As an alternative, you can roll your own functions that can be called from SQLite. | |||
|
feedback
|
|
I found this that maybe would help you:
From http://www.mail-archive.com/sqlite-users@sqlite.org/msg20525.html | |||
|
feedback
|
|
IT is very dificult to do in sqllite... so better you retrive the birth date from the database nd then add this logic
The first function will calculate the birth date in calendar format, second will calculate current date, the third will find the difference between the two. These functions shud be called as shown below dateOfBirth = mConvert_Date_To_Calendar(age); currentDate = myCurrentCalender(); candidateAge = daysBetween(dateOfBirth.getTime(), currentDate.getTime()); "candidateAge" will have the age. | |||
feedback
|