标签: mysql date-formatting
除了将日期转换为 MMMM dd,yyyy 之外,我已经看到很多来源将日期转换为任何格式。在MySQL中有没有办法将返回的日期转换为 MMMM dd,yyyy 格式?
示例输出:
2017年1月1日
答案 0 :(得分:3)
date_format()函数可以随意返回日期。
date_format()
date_format(my_date_field, '%M %d, %Y')
可以找到有关该功能的更多信息here
答案 1 :(得分:2)
这一切都在MySQL documentation中提供:
SELECT DATE_FORMAT('2017-07-03 22:00:00', '%M %d %Y'); -- July 03, 2017