Returns the value of summing the first argument and the second argument. Equivalent to the + operator.

NOTE: Within an expression, you might choose to use the corresponding operator, instead of this function. For more information, see Numeric Operators.

 

derive type:single value: ADD(2,3) as:'five'

Output: Sums the values 2 and 3 and stores the value in a new column called five

derive type:single value:ADD(value1, value2)

ArgumentRequired?Data TypeDescription
value1YstringThe first value must be an Integer or Decimal literal, column reference, or expression that evaluates to one of those two numeric types.
value2YstringThe first value must be an Integer or Decimal literal, column reference, or expression that evaluates to one of those two numeric types.

value1, value2

Integer or Decimal expressions, column references or literals to sum together.

Required?Data TypeExample Value
YesLiteral, function, or column reference returning an Integer or Decimal valuemyScore * 10

Example - Numeric Functions