How YEARWEEK() Works in MariaDB

In MariaDB, YEARWEEK() is a built-in date and time function that returns the year and week for a given date.

It accepts two arguments; the date you want to extract the year and week from, and an optional mode argument to specify the mode to use in the result.

It returns the week as a number in the range 0 to 53 or 1 to 53, depending on the mode being used. Also, the year in the result may be different from the year in the date argument for the first and the last week of the year.

Continue reading