MONTHNAME (Lakehouse v2)
Returns the name of the month for a date.
Analyze Syntax
Section titled “Analyze Syntax”func.monthname(<date>)Analyze Examples
Section titled “Analyze Examples”func.monthname('2024-06-15')
┌────────┐│ 'June' │└────────┘SQL Syntax
Section titled “SQL Syntax”MONTHNAME(<date>)SQL Examples
Section titled “SQL Examples”SELECT MONTHNAME('2024-06-15');
┌──────┐│ June │└──────┘