MONTH
Returns the month from a date.
Analyze Syntax
func.month(<date>)
Analyze Examples
func.month('2024-06-15')
┌───┐
│ 6 │
└───┘
SQL Syntax
MONTH(<date>)
SQL Examples
SELECT MONTH('2024-06-15');
┌───┐
│ 6 │
└───┘
Returns the month from a date.
func.month(<date>)
func.month('2024-06-15')
┌───┐
│ 6 │
└───┘
MONTH(<date>)
SELECT MONTH('2024-06-15');
┌───┐
│ 6 │
└───┘