SELECT user_id, birth_date,
       FLOOR(DATEDIFF(CURDATE(), birth_date) / 365) AS age
FROM users;