Skip to content

Calculates the sum of two numeric or decimal values.

func.plus(<number1>, <number2>)
func.plus(1, 2.3)
┌────────────────────┐
│ func.plus(1, 2.3) │
├────────────────────┤
3.3
└────────────────────┘
PLUS(<number1>, <number2>)
SELECT ADD(1, 2.3), PLUS(1, 2.3);
┌───────────────────────────────┐
add(1, 2.3) │ plus(1, 2.3) │
├───────────────┼───────────────┤
3.33.3
└───────────────────────────────┘