WEEKS_ADD (Lakehouse v2)
Adds a specified number of weeks to a date.
Analyze Syntax
Section titled “Analyze Syntax”func.weeks_add(<date>, <n>)Analyze Examples
Section titled “Analyze Examples”func.weeks_add('2024-01-01', 2)
┌──────────────┐│ '2024-01-15' │└──────────────┘SQL Syntax
Section titled “SQL Syntax”WEEKS_ADD(<date>, <n>)SQL Examples
Section titled “SQL Examples”SELECT WEEKS_ADD('2024-01-01', 2);
┌────────────┐│ 2024-01-15 │└────────────┘