MySQL周年纪念功能空间

时间:2017-10-09 13:28:01

标签: php mysql sql

我在选择查询中使用函数yearweek

我的问题=当日期= 2017-02-13 ||时yearweek = 201707.如何在2017 07

之间获得空格

1 个答案:

答案 0 :(得分:3)

您可以使用| Rossi | Mario | it | 1 | | Pironi | Luigi | it | 1 | | Pecchia | Fabio | it | 1 | +----------------------+---------+--------+----------+

DATE_FORMAT

输出:

CREATE TABLE tu(datum DATE);
INSERT INTO tu(datum) VALUES ('2017-02-13');

SELECT  datum, DATE_FORMAT(datum, '%X %V'), YEARWEEK(datum)
FROM tu;

<强> Rextester Demo

  

%X 星期日是一周的第一天的一周的年份。与%V一起使用

     

%x 星期一是一周的第一天的一周的年份。与%V一起使用