MySQL Get Month Name from Date Example

03-Feb-2022

.

Admin

Hi Friends,

I am going to explain you example of MySQL get month name from date example. You will learn MONTHNAME() Function in MySQL. I would like Finding the Month name from given datetime Using MONTHNAME() Function when the date is NULL.

MONTHNAME() function in MySQL is used to find month name from the given date. It Returns 0 when MONTH part for the date is 0 or greater than 12 otherwise it returns month name between January to December.

I will give you simple query to getting data get month name from date from table.

Let's see example here:

Table : users


Solution SQL Query:

SELECT

*,

MONTHNAME(created_at) as month_name

FROM `users`

Output:

I hope it will help you...

#MySQL