SELECT DATE_FORMAT("2019-01-01", "%x%v") AS currentWeek;
% v the week begins on Monday, and the following results are obtained:
- 20160101 (5)-> 201553
- 20170101 (Sun)-> 201652
- 20180101 (1)-> 201801
- 20181231 (1)-> 201901
- 20190101 (II)-> 201901
if you start on the first Monday of the year, then 16 or 17 years are correct
this result is very difficult to understand. does anyone have any doubts?