gpt4 book ai didi

mysql: date_format 将2016年的第一周转换为最后一周

转载 作者:行者123 更新时间:2023-11-29 11:08:29 26 4
gpt4 key购买 nike

2016年的第一周,实际上是2015年的第53周,被mysql转换成2016年的第53周。如何将其转换为实际周,即 2015 年第 53 周? http://www.epochconverter.com/weeks/2016

select date_format('2016-01-03 09:16:18','%y-%v');
16-53

最佳答案

使用

select yearweek('2016-01-03',1);

第二个参数是周模式,值为 1 表示周从星期一开始。

或者

SELECT date_format( '2016-01-03 09:16:18', '%x-%v' ) 

%x 表示一周从星期一开始

引用这里:http://dev.mysql.com/doc/refman/5.7/en/date-and-time-functions.html

关于mysql: date_format 将2016年的第一周转换为最后一周,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40991482/

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