MONTH
Learn how to use the MONTH date/time function in PlaidCloud Lakehouse. Returns the month from a date - see syntax, examples, and output.
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 │
└───┘