码迷,mamicode.com
首页 > 数据库 > 详细

MySQL日期函数的用法几则

时间:2014-12-07 01:16:50      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   for   on   div   log   bs   

1.将Date类型变成年月日时分秒的形式

select date_format(claimDate,%Y-%m-%d %H:%i:%s) as claimdate from t1

 

2.只要年月日的形式

select date_format(claimdate,%Y-%m-%d) as newdate from t1

 

3.获得星期几(英语如Monday,Tuesday...)

select DAYNAME(claimdate) as weekday from t1

 

MySQL日期函数的用法几则

标签:style   blog   color   sp   for   on   div   log   bs   

原文地址:http://www.cnblogs.com/xiandedanteng/p/4149019.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!