Addition +

Operator: +

The Addition operator + is used to add several values.

The values can be of the following type:

  • text

  • number

  • duration

  • datetime

  • concept

  • concept_set

This function is SQL compatible. For more information about SQL compatibility, see our documentation.

value1 + value2

"Hello" + ", " + "world" => "Hello, world"

15 + 8 + 7 => 30

'1d' + '6h' + '30m' => 1 day, 6 hours and 30 minutes

Today() + '1d' => tomorrow

'concept1' + 'concept2' => { 'concept1', 'concept2' }

Last updated

Was this helpful?