MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

MySQL MONTHNAME() function

In this context, we will learn how we can use the MySQL MONTHNAME() Function with proper syntax and good examples.

Introduction of MySQL MONTHNAME() function

In MySQL the MONTHNAME() Function is used to find the month name from the given date. It will Return 0 when the MONTH part for the date is 0 or greater than 12; otherwise, it returns the month name between January to December.

Syntax of the MySQL MONTHNAME() Function

The syntax of the MySQL MONTHNAME() function is given as follows:

MONTHNAME(dt)

Parameters or arguments used in MySQL MONTHNAME() Function:

There are two parameters accepted by the MONTHNAME() Function in MySQL, which are given above and described below:

dt: This is the date or datetime from which we want to extract the month name.

Returns:

It will return the month's name from the given date.

Application used for MONTHNAME() function:

The MONTHNAME() Function can be used in the given below MySQL versions.:

  • MySQL 5.7
  • MySQL 5.6
  • MySQL 5.5
  • MySQL 5.1
  • MySQL 5.0
  • MySQL 4.1
  • MySQL 4.0
  • MySQL 3.23

Examples of MySQL MONTHNAME() function:

Now we will look into some MySQL MONTHNAME() function examples and will explore how we can use the MONTHNAME function in MySQL.

Example-1 :

In this example, we will find the Current Month name Using the MONTHNAME() Function.

SELECT MONTHNAME(NOW()) AS Current_Month;

Output:

Current_Month
December
1 row in set (0.00 sec)

Example-2 :

In this example, we will find the Month name from a given datetime Using the MONTHNAME() Function.

SELECT MONTHNAME('2015-02-26 08:09:22') AS MONTHNAME;

Output:

MONTHNAME
February
1 row in set (0.00 sec)

Example-3 :

In this example, we will find the Month name from the given datetime Using the MONTHNAME() Function when the date is NULL.

SELECT MONTHNAME(NULL) AS MONTHNAME;

Output:

MONTHNAME
NULL
1 row in set (0.00 sec)

Example-4:

The MONTHNAME Function can also be used to find the total Commodity sold for every month. For demonstration, we have created a table named Commodity:

CREATE TABLE Commodity(
Commodity_id INT AUTO_INCREMENT,
Commodity_name VARCHAR(100) NOT NULL,
Buying_price DECIMAL(13, 2) NOT NULL,
Selling_price DECIMAL(13, 2) NOT NULL,
Selling_Date Date NOT NULL,
PRIMARY KEY(Commodity_id)
);

The following Statements insert some data into the Commodity table:

INSERT INTO
Commodity(Commodity_name, Buying_price, Selling_price, Selling_Date)
VALUES
('Audi Q8', 10000000.00, 15000000.00, '2018-01-26' ),
('Volvo XC40', 2000000.00, 3000000.00, '2018-04-20' ),
('Audi A6', 4000000.00, 5000000.00, '2018-07-25' ),
('BMW X5', 5000500.00, 7006500.00, '2018-10-18' ),
('Jaguar XF', 5000000, 7507000.00, '2019-01-27' ),
('Mercedes-Benz C-Class', 4000000.00, 6000000.00, '2019-04-01'),
('Jaguar F-PACE,' 5000000.00, 7000000.00, '2019-12-26' ),
('Porsche Macan', 6500000.00, 8000000.00, '2020-04-16' ) ;

So, Our table will look like this:

mysql> SELECT * FROM Commodity;
Commodity_idCommodity_nameBuying_priceSelling_priceSelling_Date
1Audi Q810000000.0015000000.002018-01-26
2Volvo XC402000000.003000000.002018-04-20
3Audi A64000000.005000000.002018-07-25
4BMW X55000500.007006500.002018-10-18
5Jaguar XF5000000.007507000.002019-01-27
6Mercedes-Benz C-Class4000000.006000000.002019-04-01
7Jaguar F-PACE5000000.007000000.002019-12-26
8Porsche Macan6500000.008000000.002020-04-16

Now, we are going to find the number of Commodities sold per month by using the MONTHNAME() function.

SELECT MONTHNAME(Selling_Date) MonthName,
COUNT(Commodity_id) Commodity_Sold
FROM Commodity
GROUP BY MONTHNAME(Selling_Date)
ORDER BY MONTHNAME(Selling_Date);

Output:

MonthNameCommodity_Sold
April3
December1
January2
July1
October1

Application of MySQL MONTHNAME() function:

This Function is used to find the month's name from the given date.

Summary:

In the above context, we have learned how to use the MONTHNAME() Function in MySQL to find the month name from the given date.