首页 > 数据库 > MySQL > 正文

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

2024-07-24 12:39:14
字体:
来源:转载
供稿:网友

本文章分享一篇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 |   --Vevb.com 
  5. +----------------------------------------+  
  6. 1 row in set (0.00 sec) ---

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表