MySql时间⽇期函数及格式化详解
前⾔
在我们的开发过程中,我们不可避免的需要接触到各种各样的数据类型,其中时间数据是最复杂多样的,为了满⾜客户的需求,我们需要定制不同的时间格式转换格式,有些我们会放到服务器程序上,通过代码实现时间⽇期的格式化,也可以通过MySql在查询时就转换成我们需要的格式,下⾯我们就具体了解⼀下MySql相关的时间⽇期的处理函数。
函数及格式化
1)获取当前⽇期及格式化输出
获取系统⽇期:now()
格式化⽇期:date_fformat(date,format)
返回系统⽇期。输出2009-12-25 14:00:00
select now(); #获取当前时间
select date_format(now(),'%Y-%m-%d %H:%I:%s'); #获取当前时间并格式化输出
format可选格式类型:
%S, %s 两位数字形式的秒( 00,01, …, 59)
%I, %i 两位数字形式的分( 00,01, …, 59)
%H 两位数字形式的⼩时,24 ⼩时(00,01, …, 23)
%h 两位数字形式的⼩时,12 ⼩时(01,02, …, 12)
%k 数字形式的⼩时,24 ⼩时(0,1, …, 23)
%l 数字形式的⼩时,12 ⼩时(1, 2, …, 12)
%T 24 ⼩时的时间形式(hh:mm:ss)
%r 12 ⼩时的时间形式(hh:mm:ss AM 或hh:mm:ss PM)
%p AM或PM
%W ⼀周中每⼀天的名称(Sunday, Monday, …, Saturday)
%a ⼀周中每⼀天名称的缩写(Sun, Mon, …, Sat)
%d 两位数字表⽰⽉中的天数(00, 01,…, 31)
%e 数字形式表⽰⽉中的天数(1, 2, …, 31)
%D 英⽂后缀表⽰⽉中的天数(1st, 2nd, 3rd,…)
%w 以数字形式表⽰周中的天数( 0 = Sunday, 1=Monday, …, 6=Saturday)
%j 以三位数字表⽰年中的天数( 001, 002, …, 366)
%U 周(0, 1, 52),其中Sunday 为周中的第⼀天
%u 周(0, 1, 52),其中Monday 为周中的第⼀天
%M ⽉名(January, February, …, December)
%b 缩写的⽉名( January, February,…, December)
%m 两位数字表⽰的⽉份(01, 02, …, 12)
%c 数字表⽰的⽉份(1, 2, …, 12)
%Y 四位数字表⽰的年份
%y 两位数字表⽰的年份
%% 直接值“%”
除了now()外,MySql还提供了⼀下函数处理时间
current_timestamp()
localtime()
localtimestamp()
等同于now()
2)获得当前⽇期+时间:sysdate()
select sysdate();
获取当前⽇期:curdate()
select curdate();
获取当前时间:curtime()
select curtime();
获取当前UTC⽇期时间函数:utc_date(),utc_time,utc_timestamp()
select utc_timestamp();
select utc_date();
select utc_time();
select now();
⽇期时间Extract函数
1)选取⽇期时间的各个部分:⽇期、时间、年、季度、⽉、⽇、⼩时、分钟、秒、微妙set = '2020-10-29 15:19:00.123456'
select date(@dt); --2020-10-29
select time(@dt); --15:19:00.123456
select year(@dt); --2020
select quarter(@dt); --4
select month(@dt); --10
select week(@dt); --43
select day(@dt); --29
select hour(@dt); --15
select minute(@dt); --19
select second(@dt); --00
select microsecond(@dt); --123456
MySql Extract()函数
set @dt = '2008-09-10 07:15:30.123456' ;
select extract( year from @dt); -- 2008
select extract(quarter from @dt); -- 3
select extract( month from @dt); -- 9
select extract(week from @dt); -- 36
select extract( day from @dt); -- 10
select extract( hour from @dt); -- 7
select extract( minute from @dt); -- 15
select extract( second from @dt); -- 30
select extract(microsecond from @dt); -- 123456
select extract(year_month from @dt); -- 200809
select extract(day_hour from @dt); -- 1007
select extract(day_minute from @dt); -- 100715
select extract(day_second from @dt); -- 10071530
select extract(day_microsecond from @dt); -- 10071530123456 select extract(hour_minute from @dt); -- 715
select extract(hour_second from @dt); -- 71530
select extract(hour_microsecond from @dt); -- 71530123456 select extract(minute_second from @dt); -- 1530
select extract(minute_microsecond from @dt); -- 1530123456 select extract(second_microsecond from @dt); -- 30123456
MySql dayof…函数:dayofweek(),dayofmonth(),dayofyear()
分别返回⽇期参数,在⼀周、⼀⽉、⼀年的位置
set @dt='2020-10-29 15:15:20'
select dayofweek(@dt); --周⼏
select dayofmonth(@dt); --⼏⽉
select dayofyear(@dt); --某天
MySql week…函数:week(),weekofyear(),weekday(),yearweek()
set @dt='2020-10-29 15:15:20'
select week(@dt); --第⼏周
select week(@dt,3); --三天后是第⼏周
select weekofyear(@dt); --⼀年中的第⼏周
select dayofweek(@dt); --“某天”在⼀周中的位置
select weekday(@dt); --3
select yearweek(@dt); --那年的第⼏周 202043
weekday:(0 =Monday, 1 = Tuesday, …, 6 = Sunday);
dayofweek:(1 =Sunday, 2 = Monday,…, 7 = Saturday)
MySql 返回星期和⽉份名称函数:dayname(),monthname()
set @dt='2020-10-29 15:15:20'
select dayname(@dt); --Thursday
select monthname(@dt); --October
MySQL last_day() 函数:返回⽉份中的最后⼀天
select last_day('2020-10-29 15:15:20'); ---2020-10-31
select day (last_day(now())) as days; --获取本⽉有多少天
unix时间戳转换日期格式MySql⽇期时间计算函数
1)MySql 为⽇期增加⼀个时间间隔:date_add()
set @dt=now();
select date_add(@dt, interval 1 day ); -- 加⼀天
select date_add(@dt, interval 1 hour ); -- 加⼀⼩时
select date_add(@dt, interval 1 minute ); -- 加⼀分
select date_add(@dt, interval 1 second ); --加⼀秒
select date_add(@dt, interval 1 microsecond); --加⼀毫秒
select date_add(@dt, interval 1 week); --加⼀周
select date_add(@dt, interval 1 month ); --加⼀⽉
select date_add(@dt, interval 1 quarter); --加⼀季度
select date_add(@dt, interval 1 year ); --加⼀年
select date_add(@dt, interval -1 day ); -- 减⼀天
select date_add(@dt, interval '01:15:30' hour_second); --加01:15:30
select date_add(@dt, interval '1 01:15:30' day_second); --加1天01:15:30
2)MySQL 为⽇期减去⼀个时间间隔:date_sub()
set @dt=now();
select date_sub(@dt, interval '1 1:1:1' day_second); --减去1天1:1:1
3)MySQL 另类⽇期函数:period_add(P,N), period_diff(P1,P2)
-- 函数参数“P” 的格式为“YYYYMM” 或者 “YYMM”,第⼆个参数“N” 表⽰增加或减去 N month(⽉)select period_add(200808,2), period_add(20080808,-2) --⽇期加/减去2⽉
4)MySQL ⽇期、时间相减函数:datediff(date1,date2), timediff(time1,time2)
select datediff( '2008-08-08' , '2008-08-01' ); -- 7 返回天数
select timediff( '2008-08-08 08:08:08' , '2008-08-08 00:00:00' ); -- 08:08:08 返回 time 差值
MySQL ⽇期转换函数、时间转换函数
MySQL (时间、秒)转换函数:time_to_sec(time), sec_to_time(seconds)
select time_to_sec( '01:00:05' ); -- 3605
select sec_to_time(3605); -- '01:00:05'
MySQL (⽇期、天数)转换函数:to_days(date), from_days(days)
select to_days( '0000-00-00' ); -- 0
select to_days( '2008-08-08' ); -- 733627
select from_days(0); -- '0000-00-00'
select from_days(733627); -- '2008-08-08'
MySQL Str to Date (字符串转换为⽇期)函数:str_to_date(str, format)
select str_to_date( '08/09/2008' , '%m/%d/%Y' ); -- 2008-08-09
MySQL ⽇期/时间转换为字符串函数:date_format(date,format), time_format(time,format) select date_format( '2008-08-08 22:23:00' , '%W %M %Y' ); --Friday August 2008
select date_format('2008-08-08 22:23:01', '%Y%m%d%H%i%s'); --20080808222301
select time_format('22:23:01', '%H.%i.%s'); --22.23.01
MySQL 获得国家地区时间格式函数:get_format()
--语法 :get_format(date|time|datetime, 'eur'|'usa'|'jis'|'iso'|'internal'
select get_format( date , 'usa' ) ; -- '%m.%d.%Y'
select get_format( date , 'jis' ) ; -- '%Y-%m-%d'
select get_format( date , 'iso' ) ; -- '%Y-%m-%d'
select get_format( date , 'eur' ) ; -- '%d.%m.%Y'
select get_format( date , 'internal' ) ; -- '%Y%m%d'
select get_format(datetime, 'usa' ) ; -- '%Y-%m-%d %H.%i.%s'
select get_format(datetime, 'jis' ) ; -- '%Y-%m-%d %H:%i:%s'
select get_format(datetime, 'iso' ) ; -- '%Y-%m-%d %H:%i:%s'
select get_format(datetime, 'eur' ) ; -- '%Y-%m-%d %H.%i.%s'
select get_format(datetime, 'internal' ) ; -- '%Y%m%d%H%i%s'
select get_format( time , 'usa' ) ; -- '%h:%i:%s %p'
select get_format( time , 'jis' ) ; -- '%H:%i:%s'
select get_format( time , 'iso' ) ; -- '%H:%i:%s'
select get_format( time , 'eur' ) ; -- '%H.%i.%s'
select get_format( time , 'internal' ) ; -- '%H%i%s'
6)MySQL 拼凑⽇期、时间函数:makdedate(year,dayofyear), maketime(hour,minute,second)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论