Collections:
MONTHNAME() - Name of Month
How to obtain the name of month of a given date using the MONTHNAME() function?
✍: FYIcenter.com
MONTHNAME(date) is a MySQL built-in function that
returns the name of month from a given date.
For example:
SELECT MONTHNAME('2023-02-03'), MONTHNAME(NOW());
-- +-------------------------+------------------+
-- | MONTHNAME('2023-02-03') | MONTHNAME(NOW()) |
-- +-------------------------+------------------+
-- | February | November |
-- +-------------------------+------------------+
Reference information of the MONTHNAME() function:
MONTHNAME(date): str Returns the full name of the month for date. The language used for the name is controlled by the value of the lc_time_names system variable. Arguments, return value and availability: date: Required. The date to extract the name of month from. str: Return value. The name of month. Available since MySQL 4.
⇒ NOW() - Start Time of Execution
2023-11-17, 1104🔥, 0💬
Popular Posts:
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
How To Change the Password for Your Own User Account in MySQL? If you want to change the password of...
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...