DAYOFWEEK_ISO
Returns the ISO day of the week index for a date (1=Monday, 7=Sunday).
Analyze Syntax
func.dayofweek_iso(<date>)
Analyze Examples
func.dayofweek_iso('2024-06-15')
┌───┐
│ 6 │
└───┘
SQL Syntax
DAYOFWEEK_ISO(<date>)
SQL Examples
SELECT DAYOFWEEK_ISO('2024-06-15');
┌───┐
│ 6 │
└───┘