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, 958🔥, 0💬
Popular Posts:
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
How To Revise and Re-Run the Last SQL Command in Oracle? If executed a long SQL statement, found a m...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...
How To Look at the Current SQL*Plus System Settings in Oracle? If you want to see the current values...