I have a csv file with customer birth dates that looks like:
CUST_BIRTH_DT
1955-07-10
When I import the data into my table, I want MySQL to calculate the age and replace the actual birth date with the age.
Is that possible in MySQL? If so how do I do it?
I've looked on stack overflow already and tried possible things and I have had no luck.