DAY
Learn how to use the DAY date/time function in PlaidCloud Lakehouse. Returns the day of the month from a date - see syntax, examples, and output.
Returns the day of the month from a date.
Analyze Syntax
func.day(<date>)
Analyze Examples
func.day('2024-06-15')
┌────┐
│ 15 │
└────┘
SQL Syntax
DAY(<date>)
SQL Examples
SELECT DAY('2024-06-15');
┌────┐
│ 15 │
└────┘