這篇文章主要介紹了mysql日期處理函數(shù)實(shí)例解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
首先創(chuàng)建一張實(shí)驗(yàn)用的一張表
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() 函數(shù)
獲取當(dāng)前時(shí)間
year() , month(),dayofmonth()
上面三個(gè)函數(shù)是分別從一個(gè)日期或者時(shí)間中提取出年 ,月 ,日
比如 想得到生日為2月份的學(xué)生
select * from t_student where month(birthday) = 2;
monthname() 函數(shù)
輸出個(gè)月份的英文單詞
select monthname(birthday) from t_student;
timestampdiff() 函數(shù)
比較兩個(gè)日期間的差值
例:學(xué)生的年齡
select timestampdiff(year,birthday ,now()) as age from t_student;
timestampdiff 函數(shù)的第一個(gè)參數(shù)為 計(jì)算結(jié)果的單位: 有year(年) month(月),day(日) 等等。
to_days()
將日期轉(zhuǎn)換成天數(shù)
計(jì)算兩個(gè)時(shí)間的天數(shù),同timestampdiff(day,arg1,arg2) 是一個(gè)道理。
查詢生日小于當(dāng)前日期60以內(nèi)的學(xué)生
select * from t_student where (to_days(now()) - to_days(birthday)) 60;
date_add 和 date_sub
根據(jù)一個(gè)日期 ,計(jì)算出另一個(gè)日期, 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年
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- MySQL計(jì)算兩個(gè)日期相差的天數(shù)、月數(shù)、年數(shù)
- MySQL 8.0.13設(shè)置日期為0000-00-00 00:00:00時(shí)出現(xiàn)的問(wèn)題解決
- 詳解Mysql中日期比較大小的方法
- mysql中常用日期比較與計(jì)算函數(shù)
- MySQL日期函數(shù)與日期轉(zhuǎn)換格式化函數(shù)大全
- mysql 獲取昨天日期、今天日期、明天日期以及前一個(gè)小時(shí)和后一個(gè)小時(shí)的時(shí)間
- 詳解MySQL日期 字符串 時(shí)間戳互轉(zhuǎn)
- 詳解mysql 獲取當(dāng)前日期及格式化