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, 1513🔥, 0💬
Popular Posts:
How to print value on console in SQL Server Transact-SQL? How to use the PRINT statements? In Transa...
How To Generate Random Numbers with the RAND() Function in SQL Server Transact-SQL? Random numbers a...
How to format a number of bytes in a human-readable unit using the FORMAT_BYTES() function? FORMAT_B...
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...