Collections:
DAYOFYEAR() - Day of Year
How to extract the day of year of a given date using the DAYOFYEAR() function?
✍: FYIcenter.com
DAYOFYEAR(date) is a MySQL built-in function that
returns the day of year from a given date.
For example:
SELECT DAYOFYEAR('2023-02-03'), DAYOFYEAR(NOW());
-- +-------------------------+------------------+
-- | DAYOFYEAR('2023-02-03') | DAYOFYEAR(NOW()) |
-- +-------------------------+------------------+
-- | 34 | 318 |
-- +-------------------------+------------------+
Reference information of the DAYOFYEAR() function:
DAYOFYEAR(date): int Returns the day of the year for date, in the range 1 to 366. Arguments, return value and availability: date: Required. The date to extract the day of year from. int: Return value. The day of year. Available since MySQL 4.
Related MySQL functions:
⇒ EXTRACT() - Extracting Datetime Component
⇐ DAYOFWEEK() - Day of Week (1=Sunday)
2023-11-16, 1189🔥, 0💬
Popular Posts:
How To Revise and Re-Run the Last SQL Command in Oracle? If executed a long SQL statement, found a m...
Where to find answers to frequently asked questions on CREATE, ALTER and DROP Statements in MySQL? H...
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...