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, 964🔥, 0💬
Popular Posts:
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...
How To Convert Character Strings into Numeric Values in SQL Server Transact-SQL? Sometimes you need ...
How To Disable a Login Name in SQL Server? If you want temporarily disable a login name, you can use...
How To Connect to a MySQL Server with a Port Number in MySQL? If you want to connect a MySQL server ...
Where to find answers to frequently asked questions on Conditional Statements and Loops in SQL Serve...