v.22.1New Feature

Add MONTHNAME Function

Add MONTHNAME function. #33436 (usurai).
Added the MONTHNAME function to ClickHouse, which returns the full name of the month for a given date or datetime value.

Why it matters

The MONTHNAME function provides an easy way to extract the month name directly from date or datetime data, improving readability and simplifying query logic when working with month-based data.

How to use it

Use the MONTHNAME function by passing a date or datetime expression as an argument, e.g., SELECT MONTHNAME(your_date_column) FROM your_table;.