MySQL中求年龄
Posted By_The_Way
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL中求年龄相关的知识,希望对你有一定的参考价值。
时间函数:
1.curdate() --- 当前系统日期
调取:
select curdate()
2.curtime() --- 当前系统时间
调取:
select curtime()
3.now() --- 当前日期时间
调取:
select now()
4.year() --- 求年,注意括号内必须有内容,不得为空
求年龄可用当前系统日期的年-出生日期的年 即如下例:
select year(curdate())-year(sbirthday) as age from student // as age 是将得出的差值列为age列,即列名为age
以上是关于MySQL中求年龄的主要内容,如果未能解决你的问题,请参考以下文章