In MySQL, the MONTHNAME() function returns the month name from a date.
For example, if you provide a date of 2021-12-07, the MONTHNAME() function will return December.
When using MySQL, you can use the MAKEDATE() function to return a date from the year and day-of-year parts.
In other words, you provide two arguments; one being the year, and the other being the day-of-year. The MAKEDATE() function will then return the date value based on those two arguments.