当前位置:首页 > Mysql教程 > 列表

mysql 日期格式化函数之date_format()函数

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-15 11:10:31 浏览: 评论:0 

本文章分享一篇mysql 日期格式化实现文章,本文章主要是介绍了date_format()函数的一些参考与在cmd模式下的用法,其实在cmd下和在php中是一样的,有需要的朋友可以参考一下.

直接在命令模式下,日期格式化函数date_format(),代码如下:

  1. mysql> select date_format(now(),'%Y');  
  2. +-------------------------+  
  3. | date_format(now(),'%Y') | 
  4.  +-------------------------+  
  5. | 2009 |  
  6. +-------------------------+  
  7. 1 row in set (0.00 sec)  

扩展:%Y:年 %c:月 %d:日 %H:小时 %i:分钟 %s:秒

  1. mysql> select date_format(now(),'%Y-%c-%d %h:%i:%s'); +----------------------------------------+  
  2. | date_format(now(),'%Y-%c-%d %h:%i:%s') |  
  3. +----------------------------------------+  
  4. | 2009-8-07 06:59:40 |   --phpfensi.com 
  5. +----------------------------------------+  
  6. 1 row in set (0.00 sec) ---

Tags: mysql日期格式化 date_format

分享到: