Collections:
DAYOFMONTH() - Day of Month
How to extract the day of month from a given date using the DAYOFMONTH() function?
✍: FYIcenter.com
DAYOFMONTH(date) is a MySQL built-in function that
returns the day of month from a given date.
For example:
SELECT DAYOFMONTH('2023-02-03'), DAYOFMONTH(NOW());
-- +--------------------------+-------------------+
-- | DAYOFMONTH('2023-02-03') | DAYOFMONTH(NOW()) |
-- +--------------------------+-------------------+
-- | 3 | 22 |
-- +--------------------------+-------------------+
Reference information of the DAYOFMONTH() function:
DAYOFMONTH(date): int Returns the day of the month for date, in the range 1 to 31, or 0 for dates such as '0000-00-00' or '2008-00-00' that have a zero day part. Arguments, return value and availability: date: Required. The date to extract the day of month from. int: Return value. The day of month. Available since MySQL 4.
Related MySQL functions:
⇒ DAYOFWEEK() - Day of Week (1=Sunday)
2023-11-17, 952🔥, 0💬
Popular Posts:
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To Use GO Command in "sqlcmd" in SQL Server? "sqlcmd" is a command line client application to ru...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...