Collections:
WEEKOFYEAR() - Calendar Week of Year
How to calculate the calendar week of year from a given date using the WEEKOFYEAR() function?
✍: FYIcenter.com
WEEKOFYEAR(date) is a MySQL built-in function that
calculates the calendar week of year from a given date.
For example:
SELECT WEEKOFYEAR('2024-03-04'), WEEK('2024-03-04', 3), WEEK('2024-03-04');
-- +--------------------------+-----------------------+--------------------+
-- | WEEKOFYEAR('2024-03-04') | WEEK('2024-03-04', 3) | WEEK('2024-03-04') |
-- +--------------------------+-----------------------+--------------------+
-- | 10 | 10 | 9 |
-- +--------------------------+-----------------------+--------------------+
Reference information of the WEEKOFYEAR() function:
WEEKOFYEAR(date): int Returns the calendar week of the date as a number in the range from 1 to 53. WEEKOFYEAR() is a compatibility function that is equivalent to WEEK(date,3). Arguments, return value and availability: date: Required. The date to extract the calendar week of year from. int: Return value. The calendar week of year. Available since MySQL 4.
Related MySQL functions:
⇐ WEEKDAY() - Weekday (0=Monday)
2023-11-17, 1138🔥, 0💬
Popular Posts:
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
What Is "mysqld" in MySQL? "mysqld" is MySQL server daemon program which runs quietly in background ...
Where to find Oracle database server tutorials? Here is a collection of tutorials, tips and FAQs for...
How To Convert Binary Strings into Hexadecimal Character Strings in SQL Server? When a query returns...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...