时间:2021-05-24
这篇文章主要介绍了mysql日期处理函数实例解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
首先创建一张实验用的一张表
drop table if exists t_student;create table t_student( id int primary key auto_increment, name varchar(20) not null comment '姓名', birthday date comment '生日')Engine=InnoDB default charset utf8;insert into t_student values(null,'tom','1992-02-03');insert into t_student values(null,'jerry','1993-02-06');insert into t_student values(null,'hank','1993-03-05');insert into t_student values(null,'xiaoming',now());其中date 类型 是记录mysql 精确日期的类型
now() 函数
获取当前时间
year() , month(),dayofmonth()
上面三个函数是分别从一个日期或者时间中提取出年 ,月 ,日
比如 想得到生日为2月份的学生
select * from t_student where month(birthday) = 2;
monthname() 函数
输出个月份的英文单词
select monthname(birthday) from t_student;
timestampdiff() 函数
比较两个日期间的差值
例:学生的年龄
select timestampdiff(year,birthday ,now()) as age from t_student;
timestampdiff 函数的第一个参数为 计算结果的单位: 有year(年) month(月),day(日) 等等。
to_days()
将日期转换成天数
计算两个时间的天数,同timestampdiff(day,arg1,arg2) 是一个道理。
查询生日小于当前日期60以内的学生
select * from t_student where (to_days(now()) - to_days(birthday)) < 60;
date_add 和 date_sub
根据一个日期 ,计算出另一个日期, date_add 是加上 date_sub 是减去
select date_add('1970-1-1', interval 10 year); # 1970 年 加上10年
select date_sub('1970-1-1', interval 10 year); #1970年减去10年
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、MySQL获得当前日期时间函数1.1获得当前日期+时间(date+time)函数:now()?1234567mysql>selectnow();+-----
本文实例讲述了mysql自定义函数原理与用法。分享给大家供大家参考,具体如下:本文内容:什么是函数函数的创建函数的调用函数的查看函数的修改函数的删除首发日期:2
本文实例讲述了thinkphp5.1框架实现格式化mysql时间戳为日期的方式。分享给大家供大家参考,具体如下:方式一使用mysql函数FROM_UNIXTIM
mysql的日期函数.例子中当前日期:curdate()是2013年6月24日。YEAR():显示年mysql>selectyear(curdate());+-
mysql(5.6及以下)解析json#json解析函数DELIMITER$$DROPFUNCTIONIFEXISTS`json_extract_c`$$CRE