DAYS_ADD (Lakehouse v2)
Adds a specified number of days to a date.
Analyze Syntax
Section titled “Analyze Syntax”func.days_add(<date>, <n>)Analyze Examples
Section titled “Analyze Examples”func.days_add('2024-01-01', 30)
┌──────────────┐│ '2024-01-31' │└──────────────┘SQL Syntax
Section titled “SQL Syntax”DAYS_ADD(<date>, <n>)SQL Examples
Section titled “SQL Examples”SELECT DAYS_ADD('2024-01-01', 30);
┌────────────┐│ 2024-01-31 │└────────────┘