TOMORROW (Lakehouse v1)
Returns tomorrow date, same as today() + 1.
Analyze Syntax
Section titled “Analyze Syntax”func.tomorrow()Analyze Examples
Section titled “Analyze Examples”func.tomorrow()┌─────────────────┐│ func.tomorrow() │├─────────────────┤│ 2021-09-03 │└─────────────────┘SQL Syntax
Section titled “SQL Syntax”TOMORROW()Return Type
Section titled “Return Type”DATE, returns date in “YYYY-MM-DD” format.
SQL Examples
Section titled “SQL Examples”SELECT TOMORROW();┌────────────┐│ TOMORROW() │├────────────┤│ 2021-09-04 │└────────────┘
SELECT TODAY()+1;┌───────────────┐│ (TODAY() + 1) │├───────────────┤│ 2021-09-04 │└───────────────┘