gpt4 book ai didi

php - MySQL年周函数空间

转载 作者:行者123 更新时间:2023-11-29 05:06:35 25 4
gpt4 key购买 nike

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

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

之间获取空格

最佳答案

您可以使用 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;

输出:

13.02.2017 00:00:00       2017 07          201707

Rextester Demo

%X Year for the week where Sunday is the first day of the week. Used with %V

%x Year for the week where Monday is the first day of the week. Used with %V

关于php - MySQL年周函数空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46647650/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com