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