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  
└───┘