WEEK
Returns the week number for a given date. The mode argument controls the week numbering system.
dateThe date or datetime value.
modeOptional. The week mode (0-7).
Examples
SELECT WEEK(date)
FROM Payments;
SELECT member_name,
WEEK(birthday)
FROM FamilyMembers;