In MariaDB, WEEKOFYEAR()
is a built-in date and time function that returns the calendar week of a given date as a number in the range from 1
to 53
.
It’s the equivalent of using the WEEK()
function in mode 3, and therefore its result is in accordance with ISO 8601:1988.
It accepts one argument; the date you want to extract the week from.
Continue reading