DAYS_ADD
Learn how to use the DAYS_ADD date/time function in PlaidCloud Lakehouse. Adds a specified number of days to a date - see syntax, examples, and output.
Adds a specified number of days to a date.
Analyze Syntax
func.days_add(<date>, <n>)
Analyze Examples
func.days_add('2024-01-01', 30)
┌──────────────┐
│ '2024-01-31' │
└──────────────┘
SQL Syntax
DAYS_ADD(<date>, <n>)
SQL Examples
SELECT DAYS_ADD('2024-01-01', 30);
┌────────────┐
│ 2024-01-31 │
└────────────┘