The formula:
TIMESTAMPDIFF(YEAR, `date_of_birth`, CURDATE())
I have to manually execute this query:
UPDATE `squad` SET `age` = TIMESTAMPDIFF(YEAR, `date_of_birth`, CURDATE())
Every time I insert rows into table, also when there is a player's birthday it surely doesn't apply a new age.