PLUS (Lakehouse v1)
Calculates the sum of two numeric or decimal values.
Analyze Syntax
Section titled “Analyze Syntax”func.plus(<number1>, <number2>)Analyze Examples
Section titled “Analyze Examples”func.plus(1, 2.3)
┌────────────────────┐│ func.plus(1, 2.3) │├────────────────────┤│ 3.3 │└────────────────────┘SQL Syntax
Section titled “SQL Syntax”PLUS(<number1>, <number2>)Aliases
Section titled “Aliases”SQL Examples
Section titled “SQL Examples”SELECT ADD(1, 2.3), PLUS(1, 2.3);
┌───────────────────────────────┐│ add(1, 2.3) │ plus(1, 2.3) │├───────────────┼───────────────┤│ 3.3 │ 3.3 │└───────────────────────────────┘