LoginSignup
9
8

More than 5 years have passed since last update.

mysqlで年齢計算

Posted at

年齢計算のsql

mysql> select (YEAR(CURDATE())-YEAR(date_of_birth)) - (RIGHT(CURDATE(),5)<RIGHT(date_of_birth,5)) AS age from users;
+------+
| age |
+------+
| 36 |
+------+
1 row in set (0.00 sec)

参考

9
8
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8