PLUS
Calculates the sum of two numeric or decimal values.
Analyze Syntax
func.plus(<number1>, <number2>)
Analyze Examples
func.plus(1, 2.3)
┌────────────────────┐
│ func.plus(1, 2.3) │
├────────────────────┤
│ 3.3 │
└────────────────────┘
SQL Syntax
PLUS(<number1>, <number2>)
Aliases
SQL Examples
SELECT ADD(1, 2.3), PLUS(1, 2.3);
┌───────────────────────────────┐
│ add(1, 2.3) │ plus(1, 2.3) │
├───────────────┼───────────────┤
│ 3.3 │ 3.3 │
└───────────────────────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)