欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql中格式化日期详解

程序员文章站 2023-12-15 09:28:04
1. date_format() 函数用于以不同的格式显示日期/时间数据。 date_format(date,format) format参数的格式有...

1. date_format() 函数用于以不同的格式显示日期/时间数据。

date_format(date,format) 

format参数的格式有

%a 缩写星期名
%b 缩写月名
%c 月,数值
%d 带有英文前缀的月中的天
%d 月的天,数值(00-31)
%e 月的天,数值(0-31)
%f 微秒
%h 小时 (00-23)
%h 小时 (01-12)
%i 小时 (01-12)
%i 分钟,数值(00-59)
%j 年的天 (001-366)
%k 小时 (0-23)
%l 小时 (1-12)
%m 月名
%m 月,数值(00-12)
%p am 或 pm
%r 时间,12-小时(hh:mm:ss am 或 pm)
%s 秒(00-59)
%s 秒(00-59)
%t 时间, 24-小时 (hh:mm:ss)
%u 周 (00-53) 星期日是一周的第一天
%u 周 (00-53) 星期一是一周的第一天
%v 周 (01-53) 星期日是一周的第一天,与 %x 使用
%v 周 (01-53) 星期一是一周的第一天,与 %x 使用
%w 星期名
%w 周的天 (0=星期日, 6=星期六)
%x 年,其中的星期日是周的第一天,4 位,与 %v 使用
%x 年,其中的星期一是周的第一天,4 位,与 %v 使用
%y 年,4 位
%y 年,2 位

例子:

date_format(now(),'%b %d %y %h:%i %p') 
date_format(now(),'%m-%d-%y') 
date_format(now(),'%d %b %y') 
date_format(now(),'%d %b %y %t:%f') 

输出结果:

dec 29 2008 11:45 pm 
12-29-2008 
29 dec 08 
29 dec 2008 16:25:46 

2. mysql 格式化函数 from_unixtime()

select from_unixtime(date, '%y-%c-%d %h:%i:%s' ) as post_date , 
date_format(now(), '%y-%c-%d %h:%i:%s' ) as post_date_gmt 
from `article` where outkey = 'y' 

1、from_unixtime( unix_timestamp )

参数:一般为10位的时间戳,如:1417363200

返回值:有两种,可能是类似 'yyyy-mm-dd hh:mm:ss' 这样的字符串,也有可能是类似于 yyyymmddhhmmss.uuuuuu 这样的数字,具体返回什么取决于该函数被调用的形式。

mysql> select from_unixtime(1344887103); 
+---------------------------+ 
| from_unixtime(1344887103) | 
+---------------------------+ 
| 2012-08-14 03:45:03  | 
+---------------------------+ 
1 row in set (0.00 sec) 

2、from_unixtime( unix_timestamp ,format )

参数 unix_timestamp :与方法 from_unixtime( unix_timestamp ) 中的参数含义一样;

参数 format : 转换之后的时间字符串显示的格式;

返回值:按照指定的时间格式显示的字符串;

mysql> select from_unixtime(1344887103,'%y-%m-%d %h:%i:%s'); 
+-----------------------------------------------+ 
| from_unixtime(1344887103,'%y-%m-%d %h:%i:%s') | 
+-----------------------------------------------+ 
| 2012-august-14th 03:45:03      | 
+-----------------------------------------------+ 
1 row in set (0.00 sec) 
mysql> select from_unixtime(1344887103,'%y-%m-%d %h:%i:%s'); 
+-----------------------------------------------+ 
| from_unixtime(1344887103,'%y-%m-%d %h:%i:%s') | 
+-----------------------------------------------+ 
| 2012-08-14th 03:45:03       | 
+-----------------------------------------------+ 
 
1 row in set (0.00 sec) 

3、判断是不是同一天:

select tbl_gamedata.gamemapname,tbl_playerdata.gamemode, tbl_gamedata.matchmode, tbl_playerdata.gameresult, sum(tbl_playerdata.gameiswin) as tday_wincount, 
   sum(tbl_playerdata.assistcount) as tday_assistcount,sum(tbl_playerdata.killcount) as tday_killcount,
   sum(tbl_player_title.threekill) as tday_threekill,sum(tbl_player_title.fourkill) as tday_fourkill,sum(tbl_player_title.fivekill) as tday_fivekill
 from tbl_playerdata 
  left join tbl_gamedata on tbl_playerdata.gameid = tbl_gamedata.gameid
  left join tbl_player_title on tbl_player_title.gameid = tbl_playerdata.gameid and tbl_player_title.playerid = tbl_playerdata.playerid
 where tbl_playerdata.playerid = user_id and (tbl_playerdata.gameresult = 2 or tbl_playerdata.gameresult = 3) and to_days(from_unixtime(tbl_playerdata.gamestarttime)) = to_days(now()) 
 group by tbl_gamedata.gamemapname, tbl_playerdata.gamemode,tbl_gamedata.matchmode,tbl_playerdata.gameresult;

其中to_days(from_unixtime(tbl_playerdata.gamestarttime)) = to_days(now()) 就是我们需要的判断

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一些帮助,如果有疑问大家可以留言交流。

上一篇:

下一篇: